-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (57 loc) · 2.1 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
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Overpass:ital@0;1&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@700&display=swap" rel="stylesheet">
<title>Interactive Rating Component</title>
</head>
<body>
<div class="wrapper">
<div class="star-icon">
<img src="images/icon-star.svg" alt="star-icon">
</div>
<div class="text-1">
<h2 class="header-text">
How did we do?
</h2>
<p class="p-text">
<strong>
Please let us know how we did with your support <br> request. All feedback is appreciated
to help us <br> improve our offering!
</strong>
</p>
</div>
<div class="rating">
<div class="buttons rate-container1 p-text">1</div>
<div class="buttons rate-container2 p-text">2</div>
<div class="buttons rate-container3 p-text">3</div>
<div class="buttons rate-container4 p-text">4</div>
<div class="buttons rate-container5 p-text">5</div>
</div>
<button class="s-button">SUBMIT</button>
</div>
<!-- Thank you page -->
<div class="wrapper-2">
<div class="thanku">
<img src="images/illustration-thank-you.svg" alt="form-image">
<div class="t-text">
<p id="num-select" class="p-text">You selected <span id="rateValue"></span> out of 5.</p>
</div>
<div class="text-1">
<h2 class="header-text">Thank you!</h2>
<p class="p-text">We appreciate you taking the time to give a rating. <br>If you ever need more support,
don’t hesitate to <br> get in touch!
</p>
</div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>