-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
62 lines (54 loc) · 1.82 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!-- Homework 1: Basic Porfolio
Kenneth Postigo -->
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<title>Homework 1</title>
<!-- include stylesheet -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header>
<!-- Header: Title and Navbar -->
<!-- Title Section -->
<div class="head-container">
<div id="myName">
<h1 id="name">Kenneth Postigo</h1>
</div>
<!-- Navigation Links -->
<div class="nav">
<nav>
<ul>
<li><a href="index.html">About</a></li>
<li id="link"><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</div>
</div>
</header>
<!-- Content: Contact -->
<div class="content-container">
<article class="content">
<h1 id="content-title">Contact</h1>
<hr id="line">
<form>
Name:<br>
<input class="contact" type="text" name="name" placeholder="John Smith" value="">
<br>
Email:<br>
<input class="contact" type="text" name="email" placeholder="[email protected]" value="">
<br>
Message:<br>
<textarea name="message" placeholder="Enter your message here."></textarea>
<br><br>
<input type="submit" value="Submit">
</form>
</article>
</div>
<footer>
<p id="cr">Copyright ©</p>
</footer>
</body>
</html>