-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (47 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Home</title>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<header>
<div class="row">
<h1>Hello world</h1>
<nav class="main-nav">
<ul>
<li><a class="border-button" href="about.html">Home</a></li>
<li><a class="border-button" href="about.html">About</a></li>
<li><a class="border-button" href="#">Page</a></li>
<li><a class="border-button" href="#">Page</a></li>
<li><a class="border-button" href="#">Page</a></li>
</ul>
</nav>
</div>
</header>
<main class="row">
<section id="worlds">
<h1>Worlds</h1>
<div id="world1" class="world col">
<p>World1 is here</p>
</div>
<div id="world2" class="world col">
<p>World2 is here</p>
</div>
</section>
<section id="players">
<h1>players</h1>
<ol class="player-list">
<li>Jones</li>
<li>Frank</li>
<li>Mike</li>
</ol>
<div class="register">
<h2>join the others</h2>
<a href="hallo">Register</a>
</div>
</section>
</main>
</body>
</html>