-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (38 loc) · 1.36 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
<!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>Rating Page</title>
<link rel="stylesheet" href="css/main.css">
<script src="js/main.js" async defer></script>
</head>
<body class="flex">
<section class="content flex">
<img src="assets/icon-star.svg" alt="star image">
<div class="rating-text flex">
<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>
<ol class="rating-list flex">
<li class="flex">1</li>
<li class="flex">2</li>
<li class="flex">3</li>
<li class="flex">4</li>
<li class="flex">5</li>
</ol>
<button id="submit">submit</button>
</section>
<section class="submited-content flex">
<img src="assets/illustration-thank-you.svg" alt="thank you image">
<p> </p>
<div class="submited-text flex">
<h1>Thank you!</h1>
<p>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>
</section>
</body>
</html>