-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
89 lines (84 loc) · 2.88 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Fauxnopoly</title>
</head>
<body>
<div class="container_index">
<div class="header">
<nav>
<ul>
<li>
<a class="active" href="index.html">Home</a>
</li>
<li>
<div class="dropdown">
<button class="dropbtn">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>Welcome to <em>Fauxnopoly Aid!</em></h1>
<hr>
<h2>Are you...</h2>
<p>A fauxnopoly beginner?</p>
<p>Tired of getting beat by your cousin?</p>
<p>A winner trapped in a loser's body?</p>
<hr>
<h2>Look no further!</h2>
<p>We'll give you the lowdown:</p>
<ul>
<li>
What property to buy
</li>
<li>
When to buy
</li>
<li>
Why to buy
</li>
<li>
What money is
</li>
<li>
What color dog to get
</li>
<li>
The path to enlightenment
</li>
</ul>
<hr>
<h2>
<em>Use the menu above to get started!</em>
</h2>
</div>
<div class="main">
<img src="money.jpg" alt="cash money" width="100%" height="100%" />
</div>
<div class="footer_index">
<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>