-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (43 loc) · 1.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png" />
<link rel="stylesheet" href="style.css" />
<title>Frontend Mentor | Interactive rating component</title>
</head>
<body>
<div class="container centering">
<div class="star-img">
<img src="images/icon-star.svg" class="centering" alt="Star Icon">
</div>
<h2 class="question">How did we do?</h2>
<p class="description">
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">
<span class="number"><span class="centering">1</span></span>
<span class="number"><span class="centering">2</span></span>
<span class="number"><span class="centering">3</span></span>
<span class="number"><span class="centering">4</span></span>
<span class="number"><span class="centering">5</span></span>
</div>
<button class="btn">Submit</button>
</div>
<div class="container_2 centering">
<div class="img">
<img src="images/illustration-thank-you.svg" alt="">
</div>
<p id="msg"></p>
<h2>Thank you!</h2>
<p class="description">We appreciate you taking the time to give a rating. If you ever need more support, don’t hesitate to get in touch!</p>
</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>
<script src="script.js"></script>
</body>
</html>