-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
29 lines (29 loc) · 1.23 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Contact Daniel</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Eczar|Staatliches|Montserrat">
</head>
<body>
<div class="info">
<h1>Contact Daniel</h1>
<p>1234 Go Dawgs Boulevard <br> Athens, GA 30602</p>
</div>
<div class="card">
<form action="mailto:[email protected]" method="post">
<label for="name">Name</label>
<input name="name" type="text" id="name" placeholder="Your name..." required><br>
<label for="email">Email</label>
<input name="email" type="email" id="email" placeholder="Your email..." required><br>
<label for="textarea">Message</label>
<textarea name="textarea" placeholder="Write something..."></textarea><br>
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>