-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
47 lines (36 loc) · 1.26 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
47
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<link rel="stylesheet" href="contact.css">
</head>
<body>
<div class="header">
<div class="container">
<h1 class="header-logo">Contact Us</h1>
<div class="para">
<p>Let Us know </p>
<p>We are Here to help You!!</p>
</div>
</div>
</div>
<div class="body">
<form action="mailto:mytechtrends123@gmail.com" method="post" enctype="text/plain">
<label>Your name:</label>
<input type="text" name="Your Name:">
<br>
<label>Email id:</label>
<input type="email" name="Your Email:">
<br>
<label>Contact number:</label>
<input type="number" name="Your Contact Number:">
<br>
<br>
<label>Your message:</label>
<textarea name="Your message:" rows="10" cols="30" ></textarea>
<br>
<input type="submit" value="submit">
</form>
</div>
</body>
</html>