This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (45 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Interactive Rating Component</title>
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<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:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<main> <!-- Main Ctn -->
<section class="star-section">
<img src="images/icon-star.svg" alt="">
</section> <!-- Sec: Star Section -->
<section id="thankyou-section">
<img src="images/illustration-thank-you.svg" alt="">
<div><p class="star-section">You Selected <span>X</span> out of 5</p></div>
</section> <!-- For You Selected 4 out of 5-->
<section class="text-section">
<h1 class="text-header">How did we do?</h1> <!-- Thank you! -->
<p class="text-info">Please let us know how we did with your support request.
All feedback is appreciated to help us improve our offering!
</p> <!-- We appreciate you taking the time to give a rating. If you ever need more support, don't hesitate to get in touch! -->
</section> <!-- Sec: Text Section -->
<section class="rating-section">
<div id="btn-1" class="rating-btn">1</div>
<div id="btn-2" class="rating-btn">2</div>
<div id="btn-3" class="rating-btn">3</div>
<div id="btn-4" class="rating-btn">4</div>
<div id="btn-5" class="rating-btn">5</div>
</section> <!-- Sec: Rating -->
<div class="submit-btn">
<button type="button">Submit</button>
</div> <!-- Sec: Submit Btn -->
</main>
<script src="script.js"></script>
<!-- For Vercel Analytics: So I can see how many audience visit the site :) -->
<script defer src="/_vercel/insights/script.js"></script>
</body>
</html>
<!-- Finished Jan 20, 2023 -->