-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·95 lines (91 loc) · 3.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
<!DOCTYPE html>
<html lang="hu">
<head>
<script
src="https://kit.fontawesome.com/31623b48e3.js"
crossorigin="anonymous"
></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>taklert.design</title>
<link rel="icon" type="image/x-icon" href="img/favicon/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<nav class="nav_container">
<a class="logo_link" href="#landing">
<!--TAKLERT.DESIGN_LOGO-->
<img
class="nav_logo"
src="img/Logo/thelogo_optimized_for_websafe.svg"
alt="taklert.design"
/>
</a>
<ul class="nav_bar">
<li class="nav_item">
<a class="link" href="https://taklertamas.xyz">
<i class="fab fa-wordpress"></i>
</a>
</li>
<li class="nav_item">
<a class="link" href="https://github.com">
<i class="fab fa-github"></i>
</a>
</li>
<li class="nav_item">
<a class="link" href="https://instagram.com/taklert.design"
><i class="fab fa-instagram"></i
></a>
</li>
</ul>
<ul class="nav_menu">
<li class="nav_item">
<a class="link" href="#one">Portfólió</a>
</li>
<li class="nav_item">
<a class="link" href="#fo">Munkaeszközeim</a>
</li>
<li class="nav_item mail_to">
<a href="mailto:[email protected]" class="link">Kapcsolat</a>
</li>
</ul>
<a class="hamburger nav_toggle" href="#">
<i class="fas fa-bars"></i>
</a>
</nav>
<main class="main">
<article class="hero" id="landing">
<section class="card hero_card">
<h1 class="hero_title">Hello! Takler Tamás</h1>
<h5 class="hero_subtitle">junior webfejlesztő vagyok</h5>
<p class="hero_description">Weboldalam fejlesztés alatt.</p>
</section>
<section class="card card_testimonial">
<img src="https://picsum.photos/id/1025/600/400" alt="" />
<h5 class="hero_subtitle">junior webfejlesztő vagyok</h5>
<p class="hero_description">Weboldalam fejlesztés alatt.</p>
</section>
</article>
</main>
<footer></footer>
<script>
let navToggle = document.querySelector(".nav_toggle");
let navLinks = document.querySelectorAll(".nav_menu");
navToggle.addEventListener("click", () => {
document.body.classList.toggle("nav_open");
});
navLinks.forEach((link) => {
link.addEventListener("click", () => {
document.body.classList.remove("nav_open");
});
});
</script>
</body>
</html>