This repository has been archived by the owner on Jul 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
57 lines (53 loc) · 2.38 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
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="Interactive rating component - Frontend Mentor">
<meta name="keywords" content="Interactive rating component, Frontend Mentor">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="stylesheet" href="styles.css">
<title>Interactive rating component</title>
</head>
<body>
<main>
<article class="main-container">
<section class="front-section dark-bg">
<!-- FRONT -->
<img class="star-img" src="images/icon-star.svg" alt="" aria-hidden=“true”>
<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>
<section class="rating-numbers">
<input name="rating" class="radio-btn" value="1" type="radio" id="one" checked></input>
<label class="rating-number one default-active" for="one">1</label>
<input name="rating" class="radio-btn" value="2" type="radio" id="two"></input>
<label class="rating-number two" for="two">2</label>
<input name="rating" class="radio-btn" value="3" type="radio" id="three"></input>
<label class="rating-number three " for="three">3</label>
<input name="rating" class="radio-btn" value="4" type="radio" id="four"></input>
<label class="rating-number four" for="four">4</label>
<input name="rating" class="radio-btn" value="5" type="radio" id="five"></input>
<label class="rating-number five" for="five">5</label>
</section>
<button class="btn">submit</button>
</section>
<!-- END OF FRONT -->
<!-- BACK -->
<section class="back-section dark-bg">
<section class="back-section-inner">
<img src="images/illustration-thank-you.svg" alt="" aria-hidden="true">
<p class="result-text"></p>
<section class="thankyou-section">
<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>
</section>
</section>
</section>
<!-- END OF BACK -->
</article>
</main>
<script src="app.js"></script>
</body>
</html>