-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (38 loc) · 1.57 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
<!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 Card</title>
<link rel="stylesheet" href="./css/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,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
</head>
<body>
<section class="container">
<img src="./images/icon-star.svg" alt="star" class="star"/>
<h1>How did we do?</h1>
<p>Please let us know ow we did with your support request. All feedbacks s appreciated help us improve our offering!</p>
<div class="reviews">
<span>1</span>
<span>2</span>
<span>3</span>
<span>4</span>
<span>5</span>
</div>
<button type="button" >SUBMIT</button>
</section>
<section class="checkout">
<section class="thankyou-container">
<img src="./images/illustration-thank-you.svg" alt="illustration" class="illustration" />
<div class="details">You have selected <span class="details-number">4</span> out of 5</div>
<h1>Thank you!</h1>
<p>We appreciate you taking your time to give a rating. If ou ever need more support, don't hesitate to get in touch!</p>
</section>
</section>
<script src="./js/main.js">
</script>
</body>
</html>