-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (104 loc) · 4.07 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="css/main.css">
<link rel="shorcut icon" type="image/png" href="images/logo1.png">
</head>
<body>
<div class="container">
<header>
<img src="images/logo.png" alt="Game" class="logo">
<nav>
<a href="#" class="hide-desktop">
<img src="images/menu.png" alt="toggle menu" class="menu" id="menu">
</a>
<ul class="show-desktop hide-mobile" id="nav">
<li id="acces" class="exit-btn hide-desktop">
<img src="images/exit1.png" alt="exit menu" id="exit" style="color: beige;"></li>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
<li><a href="https://www.youtube.com/watch?v=8gNrZ4lAnAw" target="about blank">Services</a></li>
</ul>
</nav>
</header>
<section>
<img src="images/MarioMP10.png" alt="Game Graphic" class="server">
<h1>Web Hosting for Games Presentation</h1>
<p class="subhead">Go serverless and play only what you want to play</p>
</section>
</div>
<div class="blue-container">
<div class="container">
<ul>
<li>
<img src="images/kalender.png" alt="kalender">
<p>You can get all new Informations around Gaming such as New Games, Game of the Month etc...</p>
</li>
<li>
<img src="images/kalender2.png" alt="kalender">
<p>You can get all new Informations around Gaming such as New Games, Game of the Month etc...</p>
</li>
<li>
<img src="images/kalender3.png" alt="kalender">
<p>You can get all new Informations around Gaming such as New Games, Game of the Month etc...</p>
</li>
</ul>
</div>
</div>
<div class="gray-container">
<div class="container">
<ul>
<li>
<figure>
<img class="border-image" src="images/willy2.jpg" alt="users">
<blockquote>You can get all new Informations around Gaming such as New Games, Game of the Month etc...</blockquote>
<figcaption> Willy Durand Wakam Kouam </figcaption>
</figure>
</li>
<li>
<figure>
<img class="border-image" src="images/user1.jpg" alt="users">
<blockquote>You can get all new Informations around Gaming such as New Games, Game of the Month etc...</blockquote>
<figcaption> Dannick Arnold Kwengang </figcaption>
</figure>
</li>
</ul>
</div>
</div>
<div class="container">
<h2>Download your favorite Game now! </h2>
<a href="#" class="cta"> Get Download</a>
</div>
<footer>
<div class="footer-container">
<div class="container">
<a href="#">
<img src="images/logo.png" alt="logo" class="logo">
</a>
<ul>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Privacy Polity</a></li>
</ul>
</div>
</div>
</footer>
<script>
var menu = document.getElementById("menu");
var nav = document.getElementById("nav");
var exit = document.getElementById("exit");
menu.addEventListener('click', function(e) {
nav.classList.toggle('hide-mobile');
e.preventDefault();
});
exit.addEventListener('click', function(e) {
nav.classList.add('hide-mobile');
e.preventDefault();
});
</script>
</body>
</html>