43 lines
1.1 KiB
HTML
43 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8"/>
|
||
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
||
<title>Frontend Mentor | Interactive rating component</title>
|
||
</head>
|
||
<body>
|
||
<div id="app">
|
||
<!-- Rating state start -->
|
||
|
||
How did we do?
|
||
|
||
Please let us know how we did with your support request. All feedback is appreciated
|
||
to help us improve our offering!
|
||
|
||
1 2 3 4 5
|
||
|
||
Submit
|
||
|
||
<!-- Rating state end -->
|
||
|
||
<!-- Thank you state start -->
|
||
|
||
You selected <!-- Add rating here --> out of 5
|
||
|
||
Thank you!
|
||
|
||
We appreciate you taking the time to give a rating. If you ever need more support,
|
||
don’t hesitate to get in touch!
|
||
|
||
<!-- Thank you state end -->
|
||
|
||
|
||
<div class="attribution">
|
||
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
|
||
Coded by <a href="#">Your Name Here</a>.
|
||
</div>
|
||
</div>
|
||
<script type="module" src="./src/main.ts"></script>
|
||
</body>
|
||
</html>
|