forked from Manisha011/online-game-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeedback.html
32 lines (30 loc) · 976 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="feed.css">
<script src="https://kit.fontawesome.com/67c66657c7.js"></script>
<title>Feedback Form</title>
</head>
<section>
</section>
<body>
<div class="container">
<form>
<h1>We value your feedback!!</h1>
<div class="id">
<input type="text" placeholder="Enter your full Name">
<i class="far fa-user"></i>
</div>
<div class="id">
<input type="email" placeholder="Enter your email address">
<i class="far fa-envelope"></i>
</div>
<textarea cols="15" rows="5" placeholder="What do you think??"></textarea>
<button>Send</button>
</form>
</div>
</body>
</html>