-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
58 lines (46 loc) · 1.14 KB
/
Copy pathcontact.html
File metadata and controls
58 lines (46 loc) · 1.14 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
53
54
55
56
57
58
<html>
<css>
<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
<meta charset="utf-8">
<title>Contact</title>
<style>
body
{
background-color: #ffffff;
}
h4
{
color: #000000;
font-family: Helvetica;
}
header
{
margin-top: 30px;
margin-bottom: 30px;
margin-left: 30px;
margin-right: 30px;
}
</style>
</head>
<nav>
<h2>William Kurt Macnamara Fine Art</h2>
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./photography.html">Photography</a></li>
<li><a href="./contact.html">Contact</a></li>
</ul>
</nav>
<div class="form_box">
<form action="contact.php">
<label for="firstname">First Name</label>
<input type="text" id = "firstname" name="FirstName" placeholder="First name..">
<label for="lastname">Last Name</label>
<input type="text" id = "lastname" name="LastName" placeholder="Last name..">
<label for="writehere">Write Here</label>
<textarea id="writehere" name="writehere" placeholder="Write to me here.." style="height: 200px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</css>
</html>