-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (36 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Overpass&family=Rowdies:wght@300&display=swap" rel="stylesheet">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="index.css">
<title>Frontend Mentor | Interactive rating component</title>
</head>
<body>
<div class="container">
<div class="img-container">
<img src="./images/icon-star.svg" alt="" class="img-star">
</div>
<div class="content">
<h1>How did we do?</h1>
<p id="content-paragraph">
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="buttons-container">
<button value = 1 class="choose" onclick="paintBtn(this)">1</button>
<button value = 2 class="choose" onclick="paintBtn(this)">2</button>
<button value = 3 class="choose" onclick="paintBtn(this)">3</button>
<button value = 4 class="choose" onclick="paintBtn(this)">4</button>
<button value = 5 class="choose"onclick="paintBtn(this)">5</button>
</div>
<form action="thankYou.html">
<button id="submit" onclick="sendRate()">SUBMIT</button>
</form>
<!-- <iframe src="thankYou.html" frameborder="0" style="display: none;"></iframe> -->
<script src="index.js"></script>
</body>
</html>