-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
30 lines (27 loc) · 911 Bytes
/
contact.html
File metadata and controls
30 lines (27 loc) · 911 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
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Contact Me</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body>
<h1>My Contact</h1>
<p><span>Email:</span> ravitiwari31415@gmail.com</p>
<p></p>
<br>
<br>
<hr>
<form class="" action="mailto:ravitiwari31415@gmail.com" method="post" enctype="text/plain">
<h3>Subscribe Me</h3>
<label>Your Name:</label>
<input type="text" name="name" placeholder="Type your Name"></input><br>
<label>Your Email:</label>
<input type="email" name="yourEmail" class="form-control" id="emailInput"
placeholder="Email" style="margin-left:15px;"><br>
<label>Your Message:</label><br>
<textarea name="yourMessage" rows="10" cols="30" placeholder="Type Here"></textarea><br>
<input type="submit" name=""></input>
</form>
</body>
</html>