-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (37 loc) · 1.54 KB
/
index.html
File metadata and controls
39 lines (37 loc) · 1.54 KB
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
<!DOCTYPE html>
<html lang="pl">
<head>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<meta charset="UTF-8" />
<title>Mapa Tanich Mieszkań dla Studentów</title>
<meta name="description" content="Szukasz TANIEGO mieszkania studenckiego? Sprawdź interaktywną mapę z najlepszymi ofertami w wielu miastach w Polsce. Aktualne i sprawdzone lokalizacje! Wszystko w jednym miejscu!" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- DESKTOP WERSJA -->
<div class="desktop">
<div class="billboard-wrapper">
<h1>Szukasz <span style="color:#ff6347;">taniego</span> mieszkania dla studenta?</h1>
<p>Wybierz miasto i znajdź idealne miejsce do życia!</p>
<div class="city-grid">
<button class="city-button" onclick="location.href='krakow.html'">Kraków</button>
<button class="city-button" onclick="location.href='warszawa.html'">Warszawa</button>
<button class="city-button" onclick="location.href='wroclaw.html'">Wrocław</button>
</div>
</div>
</div>
<!-- MOBILE WERSJA -->
<div class="mobile">
<div class="mobile-wrapper">
<h2>Znajdź mieszkanie studenckie</h2>
<p>Wybierz miasto:</p>
<div class="mobile-buttons">
<button onclick="location.href='krakow.html'">Kraków</button>
<button onclick="location.href='warszawa.html'">Warszawa</button>
<button onclick="location.href='wroclaw.html'">Wrocław</button>
</div>
</div>
</div>
</body>
</html>