-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (40 loc) · 1.25 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Our Rating System</title>
<link rel="stylesheet" href="./stylesheet.css">
</head>
<body>
<div class="rating">
<input type="radio" name="star" id="star1" checked="checked">
<label for="star1">
<img src="./Img/in-love.png">
<h4>Loved It </h4>
</label>
<input type="radio" name="star" id="star2">
<label for="star2">
<img src="./Img/happy.png">
<h4>Good One </h4>
</label>
<input type="radio" name="star" id="star3">
<label for="star3">
<img src="./Img/happy (1).png">
<h4>Average</h4>
</label>
<input type="radio" name="star" id="star4">
<label for="star4">
<img src="./Img/dead.png">
<h4>Bad One</h4>
</label>
<input type="radio" name="star" id="star5">
<label for="star5">
<img src="./Img/ugly.png">
<h4>Disliked</h4>
</label>
<h2 class="text">Do you Like Our Service...?</h2>
</div>
</body>
</html>