-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Interactive Rating</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="image">
<img src="https://img.freepik.com/free-vector/personal-account-positive-feedback-user-review-loyalty-stars-dating-site-website-ranking-woman-evaluating-web-page-cartoon-character_335657-2335.jpg?w=740&t=st=1693220571~exp=1693221171~hmac=2b3695534639c1591b54c37d0de0ca2135eb6f4beac2acb6af52381b39d363a1" alt="" loading="lazy" />
</div>
<h1>How did we do?</h1>
<p>Please let us know how <br> we did with your support request. All feedback is appreciated to help us <br> improve our offerings!</p>
<div class="ratings">
<button type="button" class="button" id="button1">1</button>
<button type="button" class="button" id="button2">2</button>
<button type="button" class="button" id="button3">3</button>
<button type="button" class="button" id="button4">4</button>
<button type="button" class="button" id="button5">5</button>
</div>
<div class="submit">
<button type="button" formtarget="_blank" id="submit">SUBMIT</button>
</div>
</div>
<script src="script.js" async defer></script>
</body>
</html>