-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.19 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
<!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">
<link rel="stylesheet" href="styles.css" type="text/css" />
<title>Frontend Mentor | Interactive rating component</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Overpass:wght@400;700&display=swap" rel="stylesheet">
<script type="module" src="javascript.js"></script>
</head>
<body>
<section>
<div class="card">
<div class="svg"></div>
<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 class="rates">
<button class="rate">1</button>
<button class="rate">2</button>
<button class="rate">3</button>
<button class="rate">4</button>
<button class="rate">5</button>
</div>
<button class="submit">SUBMIT</button>
</div>
</section>
</body>
</html>