-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feedback form</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/png" sizes="32x32" href="./favicon_32.png?">
<style>
img {
border-radius: 10px;
}
</style>
</head>
<body>
<div class="container" id="panel">
<img src="phiUture.png" alt="phiUture Brand" style="width:250px;height:150px;">
<h1>Hey, there! Did you like this product from phiUture?</h1>
<div class="form-elements">
<div class="emoji-box">
<div class="emoji">👎🏻</div>
<p>Not really</p>
</div>
<div class="emoji-box">
<div class="emoji">🙂</div>
<p>Just liked it</p>
</div>
<div class="emoji-box active">
<div class="emoji">👍🏻</div>
<p>It's really cool</p>
</div>
</div>
<div class="submit-button">
<button class="btn" id="send">Review it</button>
</div>
</div>
</body>
<script src="script.js"></script>
</html>