-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecond.html
More file actions
37 lines (26 loc) · 1016 Bytes
/
Copy pathsecond.html
File metadata and controls
37 lines (26 loc) · 1016 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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h3>My contact details</h3>
<p>Lagos state, Nigeria</p>
<p>Phone number: 08087542424</p>
<p>Uchemmanuel71@gmail.com</p>
<hr size="3">
<form action="mailto:uchemmanuel71@gmail.com" method="POST" enctype="text/plain">
<label>Name:</label>
<input type="text" name="your name" value="" ><br>
<label>Email:</label>
<input type="email" name="your emial" value="" > <br>
<label>Message</label>
<textarea name="your message" rows="10" cols="30" > </textarea>
<input type="button" value="Summit" >
</form>
</body>
</html>