-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (34 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Interactive rating component</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Overpass&display=swap" rel="stylesheet">
</head>
<body id="rating-state">
<div class="main">
<button class="circle" type="button" name="button">
<img class="star" src="images\icon-star.svg" alt="">
</button>
<h1>How did we do?</h1>
<p>Please let us know how we did with your support request. All feedback is appreciated
to help us improve our offering!</p>
<div class="rating-buttons">
<button class="circle rating" type="button" name="rating-btn" value="1">1</button>
<button class="circle rating" type="button" name="rating-btn" value="2">2</button>
<button class="circle rating" type="button" name="rating-btn" value="3">3</button>
<button class="circle rating" type="button" name="rating-btn" value="4">4</button>
<button class="circle rating" type="button" name="rating-btn" value="5">5</button>
</div>
<button class="submit-btn" type="button" name="num-btn">SUBMIT</button>
</div>
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div> -->
</body>
<script type="text/javascript" src="scripts.js"></script>
</html>