-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathout.html
94 lines (88 loc) · 3.26 KB
/
out.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Faux Outhouse</title>
</head>
<body>
<div class="container">
<div class="header">
<nav>
<ul>
<li>
<div>
<a href="index.html">Home</a>
</div>
</li>
<li>
<div class="dropdown">
<button class="dropbtn_active">Properties
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="beach.html">Beachfront</a>
<a href="bung.html">Bungalow</a>
<a href="cabin.html">Cabin</a>
<a href="igloo.html">Igloo</a>
<a href="light.html">Lighthouse</a>
<a href="out.html">Outhouse</a>
<a href="stilts.html">Stilts</a>
<a href="tree.html">Treehouse</a>
</div>
</div>
</li>
<li>
<a href="history.html">History</a>
</li>
<li>
<a href="contact.html">Contact</a>
</li>
</ul>
</nav>
</div>
<div class="sidebar">
<h1>Highlights</h1>
<hr>
<p>Sometimes you run out of money. In other games, that might mean failure, but not in Fauxnopoly! Get an
outhouse, stay in the game, get some money, and troll hard. Never surrender!
</p>
<hr>
<h2>Enhance your faux-empire...</h2>
<ul>
<li>~72 cubic feet</li>
<li>Abandoned ones are free!</li>
<li>+$5 per bathroom trip</li>
<li>...</li>
<li>uh... yeah...</li>
</ul>
<h2>...but be warned!</h2>
<ul>
<li>Smelly</li>
<li>Run-down</li>
<li>Loss of self-respect</li>
<li>Abondonment by friends</li>
<li>Scares small children</li>
</ul>
</div>
<div class="main">
<div class="portfolio">
<div class="image">
<img src="outhouse1.jpg" alt="Pink Flower" />
</div>
<div class="image">
<img src="outhouse2.jpg" alt="Crazy Flowers" />
</div>
<div class="image">
<img src="outhouse3.jpg" alt="Pink Rose" />
</div>
<div class="image">
<img src="outhouse4.jpg" alt="River" />
</div>
</div>
</div>
<div class="footer">
<p><em>Fauxnopoly</em> and <em>Fauxnopoloy Aid</em> are properties of: <a href="https://github.com/mgwillia/Creative1">Gwilliam Inc GitHub</a></p>
</div>
</div>
</body>
</html>