-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
53 lines (47 loc) · 1.66 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!-- a basic tutorial of form and some input types-->
<!-- <form action="index.html">
<label>Your Name:</label>
<input type="text">
<input type="color"><br>
<label>Email:</label>
<input type="text">
<input type="color"><br>
<label >Password:</label>
<input type="password"><br>
<input type="file" name="" id=""><br>
<input type="date" name="" id=""><br>
<label >Do you want to sign up to email list?</label>
<input type="checkbox">
<br>
<input type="submit">
</form> -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Contact me</title>
<link rel="stylesheet" href="css/styles-contact.css">
<link rel="icon" href="favicon.ico">
</head>
<body>
<h1>My Contact Details</h1>
<p>My Address</p>
<p>7802082902</p>
<p>mypersonalemail@gmail.com</p>
<hr>
<form action="mailto:anonymoushuman300@gmail.com" method="post", enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="YourName">
<br>
<label>Email:</label>
<input type="email" name="YourEmail">
<br>
<label for="">Your Message:</label><br>
<textarea name="YourMessage" id="" cols="30" rows="10"></textarea><br>
<label >Do you want to sign up to email list?</label>
<input type="checkbox">
<br>
<input type="submit">
</form>
</body>
</html>