-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 2.65 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 2.65 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
55
56
57
58
59
60
61
62
63
64
65
66
<!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">
<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">
<link rel="stylesheet" href="./css/style.css">
<title>Frontend Mentor | Interactive rating component</title>
</head>
<body>
<main>
<section class="container">
<div class="first ">
<div class="container__star"><img src="./images/icon-star.svg" alt=""></div>
<div class="container__titel"><h1>How did we do?</h1></div>
<div class="container__par"><p >Please let us know how we did with your support request. All feedback is appreciated to help us improve our offering!</p></div>
<div class="container__score">
<form>
<label for="one">
<input type="radio" name="score" value="1" id="one">
<span>1</span>
</label>
<label for="two">
<input type="radio" name="score" value="2" id="two">
<span>2</span>
</label>
<label for="three">
<input type="radio" name="score" value="3" id="three">
<span>3</span>
</label>
<label for="four">
<input type="radio" name="score" value="4" id="four">
<span>4</span>
</label>
<label for="five">
<input type="radio" name="score" value="5" id="five">
<span>5</span>
</label>
</form>
</div>
<div class="container__btn"><button disabled="true">SUBMIT</button></div>
</div>
<div class="container__result">
<div class="container__result--pic"><img src="./images/illustration-thank-you.svg" alt=""></div>
<div class="container__result--score"><p id="score">You selected __ out of 5</p></div>
<div class="container__result--titel"><h1>Thank you!</h1></div>
<div class="container__result--par"><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>
</section>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.frontendmentor.io/profile/i-am-vahid">Vahid</a>.
</div>
<script src="./scripts/main.js"></script>
</body>
</html>