-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact me.html
50 lines (39 loc) · 1.06 KB
/
contact me.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<style >
body {
background-color: powderblue;
}
hr{
background-color: white;
border-style: dotted none none;
width: 5%;
border-color:grey;
border-width: 5px;
}
</style>
<body>
<h1>My Contact Details</h1>
<p>My name: Pratham Srivastava </p>
<p>Number: 9627678010</p>
<p>Email:[email protected]</p>
<p>Address:Azad nagar ,khandari,Agra</p>
<p>Pin code: 282002</p>
<hr>
<h3>Message me here</h3>
<form action="mailto:info@[email protected]" method="post" enctype="text/plain">
<label>Your Name: </label>
<input type="text" name="Your name"><br>
<label>Your Email: </label>
<input type="email" name="Your email" value=""><br>
<label>Your Message</label><br>
<textarea name="Your Message" rows="10" cols="30"></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>