-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
46 lines (42 loc) · 1.36 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="ccontact.css">
</head>
<body>
<div id="container">
<div>
My Contact Number: +91 1234567890
<br>
Email me @ arpitarautaray.code@gmail.com
</div>
Any comments !! Feel free to share with me.
<form>
<div>
<label for="name" class="label">Name:</label>
<input type="text" name="name" class="input" placeholder="Enter Your Name Here" required>
</div>
<div>
<label for="Email address" class="label">Email address:</label>
<input type="text" name="email" class="input" placeholder="Enter Your Email Address Here" required>
</div>
<div>
<label for="Feedback" class="label" >Feedback:</label>
<input type="text" name="fdbk" id="fdbk" class="input" placeholder="Give Your Feedback Here" required>
</div>
</form>
<button value="Submit">
Submit
</button>
</div>
<footer>
<div class="foot">Terms of Use</div>
<div class="foot">Privacy Policy</div>
<div class="foot"> ©Arpitarautaray-2023</div>
<div class="foot"> Hosted by Arpita</div>
</footer>
</body>
</html>