-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
38 lines (38 loc) · 1.5 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
<!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">
<link rel=icon href="assets/images/favicon.ico">
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title>Phil's Portfolio</title>
</head>
<body>
<div class="leftbar"></div>
<div class="rightbar"></div>
<nav>
<h1>Philippe Blanchard</h1>
<ul class='navbar'>
<li class="last"><a class="last" href="#">Contact</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="index.html">About Me</a></li>
</ul>
</nav>
<div class="containerforall">
<section class='mainarea'>
<h2>About Me</h1>
<hr>
<label for="fullname">Your Name</label>
<input type="text" id="fullname" name="name" placeholder="Full Name...">
<label for="email">Email Address</label>
<input type="text" id="email" name="emailaddr" placeholder="Email Address">
<label for="message">Message</label>
<textarea id="message" name="message" placeholder="Write Something..." style="height:200px"></textarea>
<input type="submit" value="submit">
</section>
</div>
<div class="bottombar">CopyRight :")</div>
</body>
</html>