-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
58 lines (55 loc) · 1.85 KB
/
contact.html
File metadata and controls
58 lines (55 loc) · 1.85 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
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<title>Contact</title>
<meta name="description" content="email, phone number, address">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<meta name="author" content="William Ma">
</head>
<body>
<div class="page" id="contact">
<header>
<h1>Talk to me</h1>
<nav>
<a href="./home.html">Home</a>
<a href="./portfolio.html">Portfolio</a>
<a href="./resume.html">Resume</a>
<a class="curr_page">Contact</a>
</nav>
</header>
<section id="info">
<h2>I want to hear from you</h2>
<p>Please contact me with any questions or comments you have for me. I am happy to help.</p>
<h3>Contact Information</h3>
<p>8875 Costa Verde Blvd</p>
<p>San Diego, CA 92122</p>
<p>916-595-1385</p>
<a href="mailto:william.ma64@gmail.com">william.ma64@gmail.com</a>
</section>
<!--<form action="http://www.williamma.com/login.js"> -->
<h5>Full Name*</h5>
<p>With whom am I speaking to?</p>
<div id="firstname">
<p>First Name</p>
<input type="text" name="first_name" maxlength="30" size="15">
</div>
<div id="lastname">
<p>Last Name</p>
<input type="text" name="last_name" maxlength="30" size="15">
</div>
<div id="email">
<p>Email Address*</p>
<input type="text" name="email_address" maxlength="50" size="15">
</div>
<div id="message">
<p>Your message*</p>
<textarea name="email_message" cols="100 rows 6"></textarea>
</div>
<div id="send_message">
<p>Send Message</p>
</div>
<!--/form-->
</div>
</body>
</html>