-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
34 lines (28 loc) · 936 Bytes
/
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
<!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="styles.css">
<link rel="icon" href="favicon1.ico">
</head>
<body>
<hr size="3" noshade>
<h1>How Mei I help you?!</h1>
<p>Phone Number: +1(954)-670-4250</p>
<p>[email protected]</p>
<!-- Contact Form -->
<form class="" action="mailto:[email protected]" method="post" enctype="text/plain">
<label for="">Your Name:</label>
<input type="text" name="yourName"> <br>
<label for="">Your Email:</label>
<input type="email" name="yourEmail"><br>
<label for="">Your Message:</label><br>
<textarea name="yourMessage" id="" cols="30" rows="10"></textarea><br>
<input type="submit" name="">
<hr size="3" noshade>
</form>
</body>
</html>