-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.14 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
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="stylesheet" href="css/font-awesome-4.7.0/css/font-awesome.min.css"/>
<!-- you could also use font-awesome-4.7.0 library like below -->
<!-- <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">-->
<link rel="stylesheet" href="index.css"/>
<script src="js/star-rating.js"></script>
<title>Index</title>
</head>
<body>
<div id="div_StarRating" class="star-rating-container">
<span class="fa fa-star unchecked"></span>
<span class="fa fa-star unchecked"></span>
<span class="fa fa-star unchecked"></span>
<span class="fa fa-star unchecked"></span>
<span class="fa fa-star unchecked"></span>
</div>
<div class="common-div" onclick="getRating();">
<button>Rate</button>
</div>
<div class="common-div">
<label for="input_Rate">Rate:</label>
<input id="input_Rate" type="text"/>
</div>
<div class="common-div" onclick="setRating();">
<button>SetRate</button>
</div>
</body>
<script src="index.js"></script>
</html>