-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
44 lines (41 loc) · 1.59 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
<!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>Paolo Torrado's Portfolio</title>
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
</head>
<body>
<header class="topbar">
<div class="tbchild" id="box_name">Paolo Torrado</div>
<div class="tbchild" id="navbar">
<nav>
<a href="index.html">About |</a>
<a href="portfolio.html">Portfolio |</a>
<a href="contact.html">Contact</a>
</nav>
</div>
</header>
<div id="underline"></div>
<div class="main">
<div id="box-1">
<h1>Contact</h1>
</div>
<div>
<form id="box-contact">
<label for="fname">Name</label><br>
<input type="text" id="fname" name="firstname" placeholder="Your name.."><br><br>
<label for="lname">Email</label><br>
<input type="text" id="lname" name="lastname" placeholder="Your last name.."><br><br>
<textarea rows="15" name="comment" form="usrform" id="textarea"></textarea><br><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
<footer class="bottombar">
<h3>Copyright ©</h3>
</footer>
</body>
</html>