-
Notifications
You must be signed in to change notification settings - Fork 0
/
Contact.html
36 lines (34 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Joseph's Personal Site</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>My Contact Details</h3>
<p>My fictional address</p>
<p>Igbenjoe@gmail.com</p>
<p>2348055097857</p>
<form action="mailto:igbenjoe@gmail.com" method="post" enctype="text/plain">
<label>Your Name:</label>
<input type="text" name="Yourname" value=""><br>
<label>Your Email:</label>
<input type="email" name="Youremail" value=""><br>
<label>Your message:</label><br>
<textarea name="Yourname" rows="2" cols="10"></textarea><br>
<label>Your file:</label>
<input type="file" name="Yourfile" value=""><br>
<label>Reset botton</label>
<input type="reset" name="" value=""><br>
<label>second file upload</label>
<input type="file" accept="image/*,.pdf"><br>
<label>Select date:</label>
<input type="date">
<label>Start time: </label>
<input type="time" id="startTime"><br>
<input type="range" name="" value="">
<p><input type="submit" name=""></p>
</form>
</body>
</html>