-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththanks.html
33 lines (28 loc) · 1.07 KB
/
thanks.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Interactive rating component</title>
<link rel="stylesheet" href="./style.css">
</head>
<body onload="pageThanks()">
<main>
<div class="content">
<div class="image">
<img class="illustration" src="./images/illustration-thank-you.svg" alt="thank you">
</div>
<div class="selected">
<p>You selected 1 out of 5</p>
</div>
<div class="thanks">
<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>
</div>
</main>
<script src="./scrpit.js"></script>
</body>
</html>