-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (38 loc) · 1.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Interactive rating component</title>
<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">
<script src="https://kit.fontawesome.com/a735ed6a91.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<section class="card">
<img class="star" src="./images/icon-star.svg" alt="orange star icon">
<h1 class="text-title"> How did we do?</h1>
<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>
<ul class="rating">
<li><button class="rating-btn">1</button></li>
<li><button class="rating-btn">2</button></li>
<li><button class="rating-btn">3</button></li>
<li><button class="rating-btn">4</button></li>
<li><button class="rating-btn">5</button></li>
</ul>
<button class="submit-btn">Submit</button>
</section>
<section class="thank-you card">
<div class="back"><i class="fa-solid fa-arrow-rotate-left"></i></div>
<img class="picture" src="./images/illustration-thank-you.svg" alt="phone">
<div class="selected">You selected <span id="rating"></span> out of 5</div>
<h2 class="text-title">Thank you!</h2>
<p class="text-info">We appreciate you taking the time to give a rating. If you ever need more support, don’t hesitate to get in touch!</p>
</section>
<script src="./js/main.js"></script>
</body>
</html>