-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (52 loc) · 1.74 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
<html>
<head>
<title>U.W.F</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav>
<div class="dropdown">
<button class="dropbtn"><b>United Westwood Federation</b></button>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="index.html"><button class="dropbtn" href="#"><b>Home</b></button></a>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="executive.html"><button class="dropbtn" href="#"><b>Executive Government</b></button></a>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="about.html"><button class="dropbtn" href="#"><b>About</b></button></a>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="gild.php"><button class="dropbtn" href="#"><b>Online Gild</b></button></a>
<div class="dropdown-content">
</div>
</div>
<div class="dropdown">
<a href="dove.html"><button class="dropbtn" href="#"><b>Dove Gaming</b></button></a>
<div class="dropdown-content">
</div>
</div>
</nav>
<h1>This great nation, a republic for the people, by the people, & with the people.</h1>
<p>WE ARE ONE.<br>WE ARE MANY.<br>WE ARE THE UNITED WESTWOOD FEDERATION!<br>A country run by loyalty, friendship, and yes, Gild, we will survive throughout the darkest moments!</p>
<img height="250px" width="250px" src="62C1C29F-1CCE-40DA-841B-B911E6B5EA79.jpeg">
<p>Our Currency:^<br> Our loyal members:
<button id="viewmemb" class="button" onclick="members()">View Members</button>
<div id="members"></div>
<script>
text = "<ul><li>Alex Harden</li><li>Peter</li><li>Alex Hastings</li><li>Wenqian</li><li>Yabo</li><li>Arri</li><li>Nick<li>Danny</li></ul>";
function members() {
document.getElementById("members").innerHTML = text;
}
</script>
</body>
</html>