forked from carobte/Workshop1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (46 loc) · 1.64 KB
/
index.html
File metadata and controls
53 lines (46 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Workshop</title>
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div id="container">
<div id="star">
<img src="./styles/icon-star.svg" alt="icon-star">
</div>
<div id="text">
<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>
</div>
<div id="buttons">
<div id="options">
<button value="1" class="select" id="1">1</button>
<button value="2" class="select" id="2">2</button>
<button value="3" class="select" id="3">3</button>
<button value="4" class="select" id="4">4</button>
<button value="5" class="select" id="5">5</button>
</div>
<button type="button" id="btn-submit">SUBMIT</button>
</div>
</div>
<div id="container2">
<div class="thanks">
<img src="./styles/illustration-thank-you.svg" alt="cellphone">
</div>
<div class="output">
<span></span>
</div>
<div id="text2">
<h1 id="h1tks">Thank you!</h1>
<p id="ptks">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>
<script src="./main.js"></script>
</body>
</html>