-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (28 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Star rating 2</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" type="text/css" href="./bootstrap-icons/font/bootstrap-icons.min.css">
</head>
<body>
<div class="container">
<fieldset class="rating" id="rating">
<input type="radio" id="hidden" checked />
<input type="radio" id="star1" name="rating" value="1" class=""/>
<label for="star1" id="star1_l" class="full" title="1 star"><i class="bi bi-star-fill"></i></label>
<input type="radio" id="star2" name="rating" value="2"/>
<label for="star2" id="star2_l" class="full" title="2 stars"><i class="bi bi-star-fill"></i></label>
<input type="radio" id="star3" name="rating" value="3"/>
<label for="star3" id="star3_l" class="full" title="3 stars"><i class="bi bi-star-fill"></i></label>
<input type="radio" id="star4" name="rating" value="4"/>
<label for="star4" id="star4_l" class="full" title="4 stars"><i class="bi bi-star-fill"></i></label>
<input type="radio" id="star5" name="rating" value="5"/>
<label for="star5" id="star5_l" class="full" title="5 stars"><i class="bi bi-star-fill"></i></label>
</fieldset>
<div id="rating"><h4 id="rating-value"></h4></div>
<script src="star-ratings.js"></script>
</body>
</html>