-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
127 lines (106 loc) · 4.19 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
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/main.css">
<title>Hello world again</title>
</head>
<body>
<div class="container">
<header>
<p class="logo">LOGO MEULTAR</p>
<nav>
<a href="#" class="hide-desktop">
<img src="images/ham.svg" alt="toggle menu" class="menu" id="menu">
</a>
<ul class="show-desktop hide-mobile" id="nav">
<li id="exit" class="exit-btn hide-desktop"><img src="images/exit.svg" alt="exit menu"></li>
<li><a href="#">home</a></li>
<li><a href="#">services</a></li>
<li><a href="#">about</a></li>
<li><a href="#">contact</a></li>
</ul>
</nav>
</header>
<section>
<img src="images/server.svg" alt="server graphic" class="server">
<h1>Web Hosting for Memers</h1>
<p class="subhead">Go serverless and pay only for what you use and meme.</p>
<img src="images/scroll.svg" alt="scroll down" class="scroll hide-mobile show-desktop">
</section>
</div>
<div class="blue-container">
<div class="container">
<div class="blue-containers-top-right"> </div>
<ul>
<li>
<img src="images/icon-1.svg" alt="Calander">
<p>This is a paragraf about the calandar, very nice and very nice.</p>
</li>
<li>
<img src="images/icon-2.svg" alt="Calander">
<p>This is a paragraf about the calandar, very nice and very nice.</p>
</li>
<li>
<img src="images/icon-3.svg" alt="Calander">
<p>This is a paragraf about the calandar, very nice and very nice.</p>
</li>
</ul>
<div class="blue-containers-bottom-left"> </div>
</div>
</div>
<div class="gray-container">
<div class="container">
<ul>
<li>
<figure>
<img src="images/user1.png" alt="user1Picture">
<blockquote>I really love memes, they are amazing to yis!</blockquote>
<figcaption>Doda Tamar</figcaption>
</figure>
</li>
<li>
<figure>
<img src="images/user2.png" alt="user2Picture">
<blockquote>I really love memes, they are really okay!</blockquote>
<figcaption>Doda ruti</figcaption>
</figure>
</li>
</ul>
</div>
</div>
<div class="container">
<h2>Start your free trial now!</h2>
<a href="#" class="cta">Get Started</a>
</div>
<footer>
<div class="footer-container">
<div class="footer-container-top-left"> </div>
<div class="container">
<a href="#">
<img src="images/logo-white.svg" alt="logo">
</a>
<p class="adress">This is place mmm yess, 111 <br>haha eyss</p>
<ul class="footer-links">
<li> <a href="#">Terms of Service</a></li>
<li> <a href="#">Privacy yiss</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.toggle('hide-mobile');
e.preventDefault();
});
</script>
</body>
</html>