-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
37 lines (33 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>my contact details</title>
</head>
<body>
<h2>🖐️Heloo! Pranaam everybody! </h2>
<h3>I m Samyak</h3>
<p>You can contact me via</p>
<ul>
<li>MY address- 221B, Baker's street, Chattrapati Sambhajinagar.</li>
<li>email - [email protected]</li>
<li> <a href="https://www.instagram.com/samyak__rote__/">my instagram</a> </li>
<li><a href="https://twitter.com/RoteSamyak25760">My twitter</a></li>
</ul>
<hr>
<form action="mailto:[email protected]" class="" method="post">
<label for="name">your name</label>
<input type="text" id="name">
<br>
<label for="username">enter username</label><input type="text">
<br>
<label for="pass">Password</label><input type="password">
<br><label for="email">Enter your email</label><input type="email">
<br><label for="message">write your message for me here<input type="textarea" rows="20" cols="100" id="message">
</label>
<br><label for="tnc">do you agree with
the terms and condition😂</label><input type="checkbox">
<br><input type="submit">
</form>
</body>
</html>