-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
72 lines (56 loc) · 2.07 KB
/
contact.html
File metadata and controls
72 lines (56 loc) · 2.07 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="about-me.html">About Me</a></li>
<li><a href="contact.html">Contact Me</a></li>
<li><a href="gallary.html"> My Gallary</a></li>
</ul>
</nav>
</header>
<main>
<h1>Contact Me</h1>
<p>If you want to get in touch, Please fill out the below form.</p>
<form action="#" method="get">
<lable for="name"> Name:</lable><br>
<input type="text" id="name" name="name" placeholder="Enter your name"required><br><br>
<lable for="email">Email:</lable><br>
<input type="email" id="email" name="email" placeholder=" Enter your email"required><br><br>
<lable for="message"> Message:</lable><br>
<textarea id="Message"name="Message" rows="5" cols="40" placeholder="Type your message here"required></textarea><br><br>
<lable>Gender;</lable><br>
<lable for="male">Male:</lable><br>
<input type="radio" id="male" name="Gender" value="Male"><br>
<lable for="Female">Female:</lable><br>
<input type="radio" id="Female" name="Gender" value="Female"><br>
<hr>
<lable>Interest List;</lable><br><br>
<lable for="music">Music</lable><br>
<input type="checkbox" id="Music" name="Interest" value="Music"><br><br>
<lable for="Book">Book</lable><br>
<input type="checkbox" id="Book" name="Interest" value="Book"><br><br>
<lable for="Sport">Sport</lable><br>
<input type="checkbox" id="Sport" name="Interest " value="Sport"><br><br>
<input type="Submit" value="Submit">
</form>
<hr>
</main>
<footer>
<h2> Second Contact Option</h2>
<p> You can also contact me directly by mentioned email:
<a href="malito:[email protected]"> [email protected]</a>
</p>
<p align="right">
<a href="index.html"> Back to Home page</a>
</p>
</footer>
</body>
</html>,