-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
72 lines (66 loc) · 1.93 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
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>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Contact Bharath N M</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="biodata.html">Bio-data</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name"><br>
<br>
<label for="Place">Place:</label>
<input type="text" id="Place" name="Place"><br>
<br>
<label for="Gender">Gender:</label>
<input type="text" id="Gender" name="Gender"><br>
<br>
<label for="Age">Age:</label>
<input type="text" id="Age" name="Age"><br>
<br>
<label for="Hobbies">Hobbies:</label>
<input type="text" id="Hobbies" name="Hobbies"><br>
<br>
<label for="email">Email:</label>
<input type="email" id="email" name="email"><br>
<br>
<label for="message">Message:</label>
<textarea id="message" name="message"></textarea><br>
<button type="submit">Send</button>
</form>
</form>
</main>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<footer>
<p>© 2024 Bharath N M. All rights reserved.</p>
</footer>
</body>
</html>