-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
53 lines (39 loc) · 1.24 KB
/
home.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
<!DOCTYPE html>
<html>
<head>
<title> home page </title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="wrapper">
<div>
<div id="header-image">
</div>
<div id="header-title">
<h1> The Wiki Game</h1>
</div>
</div>
<nav>
<ul>
<li> <a href="set-game.html"> Play </a></li>
<li> <a href="home.html"> Home </a></li>
</ul>
</nav>
</div>
</header>
<section id="play">
<div class="wrapper">
<div class = "button-wrapper">
<a href="set-game.html" class = "button-1"> Start a game !</a>
</div>
</div>
</section>
<footer>
<h1> The Wiki Game </h1>
<div class="copyright">
Copyright 2020
</div>
</footer>
</body>
</html>