-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (48 loc) · 2.72 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
<!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="stylesheet" href="./css/reset.css">
<link rel="stylesheet" href="./css/style.css">
<script src="javascript/main.js"></script>
</head>
<body>
<main class="cards-content">
<section class="card-state-start">
<img src="./images/icon-star.svg" alt="star icon" class="card-state-start__image">
<div class="card-state-start__message">
<h1 class="message__title">How did we do?</h1>
<p class="message__parraf">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="card-state-start__rating-content">
<div class="rating">
<span id="option-1" class="rating__option" onclick="selectOption('option-1',1)">1</span>
<span id="option-2" class="rating__option" onclick="selectOption('option-2',2)">2</span>
<span id="option-3" class="rating__option" onclick="selectOption('option-3',3)">3</span>
<span id="option-4" class="rating__option" onclick="selectOption('option-4',4)">4</span>
<span id="option-5" class="rating__option" onclick="selectOption('option-5',5)">5</span>
</div>
<button type="button" class="rating__button" onclick="getOption()">Submit</button>
</div>
</section>
<section class="card-state-end">
<div class="card-state-end__content-selection">
<img src="./images/illustration-thank-you.svg" alt="mobile sent info" class="content-selection__image">
<p class="content-selection__info">You selected <span class="content-selection__value-selected">?</span> out of 5</p>
</div>
<div class="card-state-end__content-gratefulness">
<h1 class="content-gratefulness__title">Thank you!</h1>
<p class="content-gratefulness__parraf">
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>
</section>
</main>
<footer class="attribution">
Challenge by <a rel="noopener" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a rel="noopener" href="https://www.linkedin.com/in/juanmosquera98/" target="_blank">Juan Mosquera</a>.
</footer>
</body>
</html>