-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
49 lines (45 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Basic Portfolio - Maura Fortino</title>
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container">
<header>
<div class="title">
<h1><a class="home" href="index.html">Maura Fortino</a></h1>
<nav>
<a href="index.html">About Me</a>
<span>|</span>
<a href="portfolio.html">Portfolio</a>
<span>|</span>
<a href="#" class="active">Contact</a>
</nav>
</div>
</header>
<section class="clearfix">
<h2>
Contact
</h2>
<hr>
<form>
<p>Name</p>
<input type="text" placeholder="John Smith">
<p>Email</p>
<input type="text" placeholder="[email protected]">
<p>Message</p>
<textarea rows="10"></textarea>
<button type="submit">Submit</button>
</form>
</section>
</div>
<footer>
<div class="stripe"></div>
<span class="copyright">Copyright ©</span>
</footer>
</body>
</html>