-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacts.html
32 lines (29 loc) · 1.13 KB
/
contacts.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
</head>
<body>
<h3>Contact Details</h3>
<hr>
<ul>
<li><strong>Email:</strong> [email protected]</li>
<li><strong>Phone No.:</strong> 00966572328711</li>
<li><a href="https://www.linkedin.com/in/amal-mohan-423615233/"><strong>LinkedIn</strong></a></li>
<li><strong><a href="https://github.com/Amal-Mohan-2002?tab=repositories">GitHub</a></strong></li>
</ul>
<hr>
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="">Your Name:</label>
<input type="text" name="yourName" id=""><br><br>
<label for="">Your Email:</label>
<input type="email" name="yourEmail" id=""><br><br>
<label for="">Your Message:</label><br>
<textarea name="yourMessage" cols="30" rows="10"></textarea><br><br>
<input type="submit">
</form>
</body>
</html>