-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact me.html
More file actions
38 lines (38 loc) · 1.2 KB
/
Contact me.html
File metadata and controls
38 lines (38 loc) · 1.2 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<h3>Via Cellular</h3>
<p><em>0723909173</em></p>
<h3>Via Email</h3>
<p><em>exampleemail@gmail.com</em></p>
<h3>Via Social Networks</h3>
<em><ul>
<li><a href="#">WhatsApp</a></li>
<li><a href="#">Telegram</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
<li><a href="#">Facebook</a></li>
</ul></em>
<hr>
<form action="mailto:georgeoluolufemi@gmail.com" method="post" enctype="text/plain">
<label for="name">Your Name:</label>
<input type="text" name="Your Name">
<br><br>
<label for="email">Your Email:</label>
<input type="email" name="Your Email">
<br><br>
<label for="message">Your Message:</label>
<br>
<textarea name="Your Message" id="message" cols="30" rows="10"></textarea>
<br><br>
<input type="submit">
</form>
</body>
</html>