-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfeedback.html
More file actions
152 lines (129 loc) · 5.88 KB
/
feedback.html
File metadata and controls
152 lines (129 loc) · 5.88 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<!DOCTYPE html>
<html lang="en">
<head>
<link href="http://fonts.cdnfonts.com/css/frosty" rel="stylesheet">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.10.2/css/all.css">
<link rel="stylesheet" href="feedback.css">
<title>Document</title>
</head>
<body>
<header>
<nav>
<div>
<h1>Kids World</h1>
</div>
<div class="cloud" >
<div class="cloudElement"></div>
</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="shop.html">Shop</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact us </a></li>
</ul>
</nav>
</header>
<h1 id="feeed">FEED BACK FORM</h1>
<section id="backkk">
</section>
<div class="container">
<form>
<div class="row">
<div class="col-25">
<label for="fname">First Name</label>
</div>
<div class="col-75">
<input type="text" id="fname" name="firstname" placeholder="Your name..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="lname">Last Name</label>
</div>
<div class="col-75">
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="email">Mail Id</label>
</div>
<div class="col-75">
<input type="email" id="email" name="mailid" placeholder="Your mail id..">
</div>
</div>
<div class="row">
<div class="col-25">
<label for="country">Country</label>
</div>
<div class="col-75">
<select id="country" name="country">
<option value="none">Select Country</option>
<option value="australia">Jordan</option>
<option value="canada">Canada</option>
<option value="usa">USA</option>
<option value="russia">Russia</option>
<option value="japan">Japan</option>
<option value="india">India</option>
<option value="china">China</option>
<option value="china">Other</option>
</select>
</div>
</div>
<div class="row">
<div class="col-25">
<label for="feed_back">Message</label>
</div>
<div class="col-75">
<textarea id="subject" name="subject" placeholder="Write something.." style="height:200px"></textarea>
</div>
</div>
<div class="row"-->
<input type="submit" value="Submit">
</div>
</form>
</div>
<div class="star-rating">
<h2 id="rateee">Rate our products</h2>
<div class="thanks-msg">Thanks for your feedback !!!</div>
<div class="star-input">
<input type="radio" name="rating" id="rating-5">
<label for="rating-5" class="fas fa-star"></label>
<input type="radio" name="rating" id="rating-4">
<label for="rating-4" class="fas fa-star"></label>
<input type="radio" name="rating" id="rating-3">
<label for="rating-3" class="fas fa-star"></label>
<input type="radio" name="rating" id="rating-2">
<label for="rating-2" class="fas fa-star"></label>
<input type="radio" name="rating" id="rating-1">
<label for="rating-1" class="fas fa-star"></label>
<!-- Rating Submit Form -->
<form>
<span class="rating-reaction"></span>
<button type="submit" class="submit-rating">Submit</button>
</form>
</div>
</div>
<footer>
<ul id="social">
<a href="https://www.twitter.com">
<img src="https://www.net-aware.org.uk/siteassets/images-and-icons/application-icons/app-icons-twitter.png?w=585&scale=down" alt="">
</a>
<a href="https://www.instagram.com">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Facebook_f_logo_%282019%29.svg" alt="">
</a>
<a href="https://www.facebook.com/">
<img src="https://nveloop.com/wp-content/uploads/2021/02/instagram.jpg" alt="">
</a>
<ul id="contact">
<li>Phone number: +962 79 520 9793</li>
<li>Email: info@KidsWorld.com</li>
</ul>
</footer>
<script src="feedback.js"></script>
</body>
</html>