feat: linki nagłówka
This commit is contained in:
parent
59a91fdb6f
commit
7037024554
@ -15,10 +15,10 @@
|
|||||||
<a class="header_link" href="./index.html"><img class="logo" src="_global/logo.svg" alt="Logo error"></a>
|
<a class="header_link" href="./index.html"><img class="logo" src="_global/logo.svg" alt="Logo error"></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="linkBox">
|
<div class="linkBox">
|
||||||
<button class="loginButton" type="submit" >LOGOWANIE</button>
|
<button class="loginButton" type="submit" onclick="window.location.href='./logowanie/index.html'">LOGOWANIE</button>
|
||||||
<a class="header_link" href="#">Kontakt</a>
|
<a class="header_link" href="#">Kontakt</a>
|
||||||
<a class="header_link" href="#">Ranking</a>
|
<a class="header_link" href="#">Ranking</a>
|
||||||
<a class="header_link" href="#">Kalendarz turniejów</a>
|
<a class="header_link" href="./index.html">Kalendarz turniejów</a>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
@ -47,13 +47,13 @@
|
|||||||
|
|
||||||
<div class="tournamentBox">
|
<div class="tournamentBox">
|
||||||
<div class="tournamentIconBox">
|
<div class="tournamentIconBox">
|
||||||
<img class="tournamentIcon" src="_main%20page/cup.svg">
|
<img class="tournamentIcon" src="_main%20page/cup.svg" alt="">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="tournamentDataBox">
|
<div class="tournamentDataBox">
|
||||||
<div class="tournamentData">
|
<div class="tournamentData">
|
||||||
<h4>Turniej majowy 2022</h4>
|
<h4>Turniej majowy 2022</h4>
|
||||||
Propadel, Warszawa</br>
|
Propadel, Warszawa
|
||||||
13/05/2022 do 15/05/2022
|
13/05/2022 do 15/05/2022
|
||||||
<button class="tournamentOpen">OPEN</button>
|
<button class="tournamentOpen">OPEN</button>
|
||||||
</div>
|
</div>
|
||||||
|
31
frontend/kontakt/index.html
Normal file
31
frontend/kontakt/index.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Padel Tournaments System</title>
|
||||||
|
<link href="./style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<div class="logoBox">
|
||||||
|
<a class="header_link" href="../index.html"><img class="logo" src="../_global/logo.svg" alt="Logo error"></a>
|
||||||
|
</div>
|
||||||
|
<div class="linkBox">
|
||||||
|
<!-- <span class="dot">JM</span>-->
|
||||||
|
<button class="loginButton" type="submit" onclick="window.location.href='../logowanie/index.html'">LOGOWANIE</button>
|
||||||
|
<a class="header_link" href="../kontakt/index.html">Kontakt</a>
|
||||||
|
<a class="header_link" href="../ranking/index.html">Ranking</a>
|
||||||
|
<a class="header_link" href="../index.html">Kalendarz turniejów</a>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
Kontakt
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
14
frontend/kontakt/style.css
Normal file
14
frontend/kontakt/style.css
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
@import "../_global/header.css";
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.container {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
}
|
31
frontend/ranking/index.html
Normal file
31
frontend/ranking/index.html
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<html>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
|
<title>Padel Tournaments System</title>
|
||||||
|
<link href="./style.css" rel="stylesheet">
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header>
|
||||||
|
<div class="logoBox">
|
||||||
|
<a class="header_link" href="../index.html"><img class="logo" src="../_global/logo.svg" alt="Logo error"></a>
|
||||||
|
</div>
|
||||||
|
<div class="linkBox">
|
||||||
|
<!-- <span class="dot">JM</span>-->
|
||||||
|
<button class="loginButton" type="submit" onclick="window.location.href='../logowanie/index.html'">LOGOWANIE</button>
|
||||||
|
<a class="header_link" href="../kontakt/index.html">Kontakt</a>
|
||||||
|
<a class="header_link" href="../ranking/index.html">Ranking</a>
|
||||||
|
<a class="header_link" href="../index.html">Kalendarz turniejów</a>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
|
||||||
|
<div class="container">
|
||||||
|
Ranking
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
14
frontend/ranking/style.css
Normal file
14
frontend/ranking/style.css
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
@import "../_global/header.css";
|
||||||
|
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
.container {
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user