-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (48 loc) · 1.51 KB
/
index.html
File metadata and controls
54 lines (48 loc) · 1.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Interactive Rating Component</title>
<link rel="icon" type="image/png" href="img/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="styles/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Overpass:400,700">
</head>
<body>
<main>
<div class="container">
<div class="card-inner main-card">
<div class="star-icon">
<img src="img/icon-star.svg" alt="Star icon">
</div>
<h1>How did we do?</h1>
<p>Please let us know how we did with your support request. All feedback is appreciatedto help us
improve our offering!</p>
<div class="class-wrapper" id="ratings">
<div class="rate">1</div>
<div class="rate">2</div>
<div class="rate">3</div>
<div class="rate">4</div>
<div class="rate">5</div>
</div>
<button class="sub-button" id="sub">Submit</button>
</div>
<!-- Thank you from here -->
<div class="card-inner card-thank-you hidden">
<img src="img/illustration-thank-you.svg" alt="Thank you">
<div class="rating-wrap">
You Selected <span class="select-wrapper">5</span> out of 5
</div>
<h1>Thank you!</h1>
<div class="desc">
We appreciate you taking the time to give a rating.
if you ever need more support, dont hesitate to get in
touch!
</div>
</div>
</div>
</div>
</main>
</body>
<script src="./js/script.js"></script>
</html>