-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcontact4.html
More file actions
69 lines (69 loc) · 2.57 KB
/
contact4.html
File metadata and controls
69 lines (69 loc) · 2.57 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
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Contact Us</title>
<meta charset="UTF-8">
<!--ADD CSS-->
<link rel="stylesheet" href="css/style4.css">
</head>
<body>
<!--NAVBAR-->
<div class="navBar">
<ul id="navBorder">
<a href="index1.html"><li>HOME 1</li></a>
<a href="contact1.html"><li>CONTACT 1</li></a>
<a href="index2.html"><li>HOME 2</li></a>
<a href="contact2.html"><li>CONTACT 2</li></a>
<a href="index3.html"><li>HOME 3</li></a>
<a href="contact3.html"><li>CONTACT 3</li></a>
<a href="index4.html"><li>HOME 4</li></a>
<a href="contact4.html"><li>CONTACT 4</li></a>
</ul>
</div>
<!--HEADER-->
<header>
<div>
<h1 class="animateText">Contact Us!</h1>
</div>
</header>
<!--FORM-->
<section>
<div>
<h3 id="contact-h3">Please provide your contact information
and a brief message of your inquiry.
</h3>
<div>
<form>
<input type="text" value="" placeholder="First Name"> <!--Add placeholder to script-->
<input type="text" value="" placeholder="Last Name"><br>
<input type="email" value="" placeholder="Email"> <!--REMOVE BREAKLINE-->
<input type="tel" value="" placeholder="Phone Number"><br>
<input type="checkbox" id="Newsletter">
<label for="Newsletter">Would you like to
receive our monthly newsletter?
</label><br>
<textarea>Type message here...</textarea><br>
<input type="submit" value="Submit">
</form>
</div>
</div>
</section>
<!--FOOTER-->
<footer>
<table>
<tr>
<td>
<p>The Pet Shop! ©</p>
</td>
<td>
<p>123 Square Ave</p>
<p>Portland, OR 97204</p>
</td>
<td>
<p>503-234-3966</p>
</td>
</tr>
</table>
</footer>
</body>
</html>