-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
40 lines (40 loc) · 1.35 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Team 12 - TP2024/25</title>
<link rel="stylesheet" href="./styles/styles.css">
</head>
<body>
<div class="top-bar">
<a href="./index.html">My</a>
<a href="./progress.html">Progres</a>
<a href="./index.html"><img src="./assets/team-logo.png" alt="Logo" class="logo"/></a>
<a href="./theme.html">Téma</a>
<a href="./contact.html">Kontakt</a>
</div>
<div class="top-bar-mobile">
<a href="./index.html"><img src="./assets/team-logo.png" alt="Logo" class="logo"/></a>
<div class="burger-menu">
<div class="burger-line"></div>
<div class="burger-line"></div>
<div class="burger-line"></div>
</div>
<div class="mobile-menu">
<a href="./index.html">My</a>
<a href="./progress.html">Progres</a>
<a href="./theme.html">Téma</a>
<a href="./contact.html">Kontakt</a>
</div>
</div>
<div class="full-width empty-page">
<h2>Tu zatiaľ nič</h2>
<img src="./assets/nothing.png" alt="Nothing"/>
</div>
<div class="full-width footer">
<p>© Pr0mise v rámci fair use</p>
</div>
<script src="./js/index.js"></script>
</body>
</html>