-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
37 lines (32 loc) · 1.29 KB
/
form.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width-device-width, initial-scale=1">
<title>Feedback Form</title>
<script src="https://kit.fontawesome.com/67c66657c7.js"></script>
<!-- <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=Koulen&family=Ubuntu:wght@500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="formcss.css">
</head>
<body>
<section>
<div class="content">
<form>
<h1>Give your valuable Feedback</h1>
<div class="data1">
<input type="text" placeholder="Full name" style="padding: 10px;">
<i class="far fa-user"></i>
</div>
<div class="data1">
<input type="email" placeholder="Enter your Email address" style="padding: 10px;">
<i class="far fa-envelope"></i>
</div>
<textarea cols="15" rows="5" placeholder="Enter your review..."></textarea>
<button>SUBMIT</button>
</form>
</div>
</section>
</body>
</html>