-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
54 lines (54 loc) · 1.94 KB
/
contact.html
File metadata and controls
54 lines (54 loc) · 1.94 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html lang="en">
<head>
<title>Contact</title>
<!-- <meta charset="utf-8"> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<!--[if lt IE 9]>
<script src=" http://html5shim.googlecode.com/svn/trunk/html5.js ">
</script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<header><h1>David Orona's Portfolio</h1></header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="hobbies.html">Hobbies</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<main>
<p>For more details or clarification, feel free to fill in the information below to send me a direct message. Or, utilize any of the contact methods provided in the footer.</p>
<form action="https://rexconner1.github.io/sent.html">
<div>
<label for="myName">* Name:</label>
<input type="text" name="myName" id="myName" required="required" placeholder="First and last name">
</div>
<div>
<label for="myEmail">* E-mail:</label>
<input type="text" name="myEmail" id="myEmail" required="required" placeholder="you@yourdomain.com">
</div>
<div>
<label for="myPhone">Phone:</label>
<input type="text" name="myPhone" id="myPhone" placeholder="(555) 555-5555">
</div>
<div>
<label for="myComments">* Comments:</label>
<textarea name="myComments" id="myComments" rows="10" cols="85" required></textarea>
</div>
<input type="submit" name="send" value="Send" onclick="sendMail()">
</form>
</main>
<footer>
<p>Address: 5916 Sutton Place #4 Urbandale, IA 50322</p>
<p>Email: <a href="mailto:OronaDavidJ@JohnDeere.com">OronaDavidJ@JohnDeere.com</a></p>
<p>Phone: <a href="tel:1-319-529-8647">(319) 529-8647</a></p>
</footer>
</div>
</body>
</html>