-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontactme.html
More file actions
30 lines (30 loc) · 1.02 KB
/
contactme.html
File metadata and controls
30 lines (30 loc) · 1.02 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/styles.css">
<title>Contact Me</title>
</head>
<body>
<header><h1 class="no-margin">Contact Me</h1></header>
<div>
<nav>
<ul>
<li><a href="index.html">Main</a></li>
<li><a href="aboutme.html">About Me</a></li>
<li><a href="contactme.html">Contact Me</a></li>
</ul>
</nav>
<aside><img class="icon" src="https://p7.hiclipart.com/preview/147/762/336/information-invoice-report-purchase-order-application-thumbnail.jpg"></aside>
<main>
<article>
<form action="index.html" method="post">
<input type="text" name="FullName" placeholder="Full Name">
<button type="submit">Go to main Page</button>
</form>
</article>
</main>
</div>
</body>
</html>