-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
35 lines (31 loc) · 1.11 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
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My Contacts</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:wght@100&family=Sacramento&display=swap" rel="stylesheet">
<link rel="icon" href="images/favicon.ico">
</head>
<body>
<h1>Email Me</h1>
<style media="screen">
<div class="contact-text">
<p>EMAIL: [email protected]
Grand Prairie, TX</p>
</div>
</style>
<form action="mailto:gtip@gtipsolutions" method="post" enctype="text/plain">
<label>Name:</label>
<input type="text" name="yourName" value="Super Dave Osborne"><br>
<label>Email:</label>
<input type="email" name="yourEmail" value="[email protected]"><br>
<label>Message:</label><br>
<textarea name="yourMessage" rows="12" cols="40" value="Hey Brian, I might
Have a great Career offer for you."></textarea><br>
<input type="submit" name="">
</form>
</body>
</html>