-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
52 lines (43 loc) · 1.33 KB
/
Copy pathcontact.html
File metadata and controls
52 lines (43 loc) · 1.33 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="assets/css/style.css">
<title>Contact</title>
<style>
body {
background-image: url("assets/images/dark-honeycomb.png");
}
</style>
</head>
<body>
<div class="header">
<header>
<ul>
<li class="name"><a href="index.html">Devin Powell</a></li>
<li class="last"><a href="index.html">About</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</header>
</div>
<div class="body">
<h1>Contact</h1>
<hr>
<br>
<form action="action_page.php">
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="John Smith">
<label for="email">Email:</label>
<input type="text" id="email" name="email" placeholder="example@gmail.com">
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Your message here..." style="height:200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
<div class="footer">
<footer>
</footer>
</div>
</body>
</html>