-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontactMe.html
29 lines (29 loc) · 1.06 KB
/
contactMe.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Contact Me</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merriweather:wght@300&family=Montserrat&family=Sacramento&display=swap" rel="stylesheet">
</head>
<body>
<h4>Contact Me!</h4>
<form class="form-contact" action="mailto:[email protected]" method="post" enctype="test/text/plain">
<div class="form-name">
<label>Your Name:</label>
<input type="text" name="form-name" value="">
</div>
<div class="form-email">
<label>Email:</label>
<input type="email" name="form-email" value="">
</div>
<label>Type your messege here</label>
<div class="form-messege">
<textarea name="form-message" rows="10" cols="30"></textarea>
</div>
<input class = "button-contact" type="submit" name="" value="Submit">
</form>
</body>
</html>