-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (32 loc) · 1.18 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="css/normalize.css" rel="stylesheet" type="text/css">
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<header class="header">
<a href="#nav"><button class="hamburger hamburger--js" aria-label="Otwórz menu">Menu</button></a>
<nav id="nav"class="navigation navigation--js">
<a class="navigation__link navigation__link--homepage" href="index.html">Strona główna</a>
<a class="navigation__link" href="about_me.html">O mnie</a>
<a class="navigation__link" href="about_my_projects.html">Moje projekty</a>
</nav>
</header>
<main id="top" class="main">
<section class="section main_section__js">
<h1 class="section section__header">
Witaj na mojej stronie!
</h1>
</section>
</main>
<footer class="footer">
<a href="#top" class="footer__top">up</a>
Strona domowa Oli
</footer>
<script src="js/main.js"></script>
</body>
</html>