-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
45 lines (45 loc) · 1.18 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
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact</title>
<link rel="stylesheet" href="style.css">
</head>
<header>
<h1 id="title">Jennie Choi</h1>
<nav>
<ul>
<li><a class="home" href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<body>
<main>
<div class="contact">
<h2>Contact Me</h2>
</div>
<form>
<label for="name">Full Name:</label>
<br>
<input type="text">
<br>
<br>
<label for="email">Email Address:</label>
<br>
<input type="email">
<br>
<br>
<label for="message">Message:</label>
<br>
<textarea id="message" rows="5"></textarea>
<br>
<br>
<button type="submit" formaction="submit.html">SUBMIT</button>
</form>
</main>
</body>
</html>