-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactMe.html
More file actions
28 lines (28 loc) · 970 Bytes
/
ContactMe.html
File metadata and controls
28 lines (28 loc) · 970 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h1>Contact Info</h1>
<h2><a target="_blank" href="https://www.linkedin.com/in/adithyahnair/">LinkedIn</a></h2>
<p>
<ol>
<li><em>Mobile no:</em> +918291475369</li>
<li><em>Email:</em> adithyah.nair@gmail.com</li>
</ol>
</p>
<form action="mailto:adinair1155@gmail.com"> <!-- Action specifies what to do when you click on the submit button-->
<label>Your name: </label>
<input type="text" name="yourName" id=""><br>
<label>Your email:</label>
<input type="email" name="yourEmail"><br>
<label>Your message:</label><br>
<textarea name="yourMessage"cols="20" rows="10"></textarea><br>
<input type="submit">
</form>
</body>
</html>