-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
57 lines (51 loc) · 2.23 KB
/
feedback.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css" integrity="sha512-1PKOgIY59xJ8Co8+NE6FZ+LOAZKjy+KY8iq0G4B3CyeY6wYHN3yt9PW0XpSriVlkMXe40PTKnXrLnZ9+fkDaog==" crossorigin="anonymous" />
<link rel="stylesheet" href="src/feedback.css"/>
<link rel="stylesheet" href="src/style.css"/>
<title>Let Us Know Your Feedback || Retro Vintage Museum</title>
</head>
<body>
<header>
<h1 class="animated">Retro Vintage Museum</h1>
</header>
<nav class="nav">
<ul>
<li><a href="game.html">Game Lobby</a></li>
<li><a href="cars.html">Retro Cars</a></li>
<li><a href="computers.html">Retro Computers</a></li>
<li><a href="radios-telephones.html">Radios & Telephones</a></li>
<li><a href="cameras.html">Retro Cameras</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="feedback.html">Feedback</a></li>
</ul>
</nav>
<div id="panel" class="panel-container">
<strong>How satisfied are you with our <br /> services?</strong>
<div class="ratings-container">
<div class="rating">
<img src="https://cdn-icons-png.flaticon.com/128/9623/9623952.png" alt="">
<small>Unhappy</small>
</div>
<div class="rating">
<img src="https://cdn-icons-png.flaticon.com/128/10801/10801423.png" alt=""/>
<small>Neutral</small>
</div>
<div class="rating active">
<img src="https://cdn-icons-png.flaticon.com/128/9623/9623893.png" alt=""/>
<small>Satisfied</small>
</div>
</div>
<button class="btn" id="send">Send Review</button>
</div>
<div class="credit">Together with <span style="color:red">❤</span> by <a href="https://www.RetroVintageMuseum/">Retro Vintage Museum</a></div>
<script src="src/feedbackscript.js"></script>
</body>
<footer class="footer">
<p>© 2023 Retro Vintage Museum. All rights reserved.</p>
</footer>
</html>