-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
executable file
·52 lines (41 loc) · 1012 Bytes
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE>
<html>
<head>
<title>Teamaster Kitty 5000</title>
<!--- External CSS Files --->
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrap">
<div id="header">
<h1>What.</h1>
<div id="navigation">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div id="content">
<div id="contact">
<h2>Contact</h2>
<address>
Made by <a href="mailto:[email protected]">dusya</a><br />
If you've got a cat then, yo, I'll hug it.<br />
GA, USA <br />
</address>
</div>
</div>
<div id="footer">
<div id="navigation-footer">
<ul class="nav-list-footer">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</div>
</body>
</html>