-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (72 loc) · 3.87 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
<!DOCTYPE html>
<html lang="pl">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Hello World</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
<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=Playfair+Display&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<link href="style.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/js/bootstrap.bundle.min.js" integrity="sha384-U1DAWAznBHeqEIlVSCgzq+c9gqGAJn5c/t99JyeKa9xxaYpSvHU5awsuZVVFIhvj" crossorigin="anonymous"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-1WEPF2XLQN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-1WEPF2XLQN');
</script>
</head>
<body class="d-flex flex-wrap min-vh-100">
<!-- Header -->
<!-- <header>
<nav class="navbar py-0 net-bg-secondary">
<div class="container-fluid">
<span class="navbar-brand">Grupa .NET Politechnika Koszalińska</span>
</div>
</nav>
</header> -->
<!-- Main -->
<main>
<section class="container">
<div class="row">
<div class="col-12 d-flex justify-content-center align-items-center p-3">
<span class="navbar-brand">Grupa .NET Politechniki Koszalińskiej</span>
</div>
</div>
<div class="row">
<div class="col-lg-6 d-flex justify-content-center">
<img src="./images/logo-square.png" class="p-4 img-net" alt="Grupa .NET PK">
</div>
<div class="col-lg-6 d-flex justify-content-center align-items-center hello">
<div class="hello-text">Hello World<span class="ps-2 net-icon">_</span></div>
</div>
</div>
<hr>
<div class="row">
<!-- <> -->
<a href="./helloworld" class="col-lg-6 d-flex justify-content-center align-items-center block">
<h2>Ścieżka Enterprise</h2>
</a>
<!-- </a> -->
<div class="col-lg-6 d-flex justify-content-center align-items-center block disabled">
<h2>Ścieżka Gamedev</h2>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer class="net-bg-secondary py-2">
<div class="container text-center">
<small class="d-flex justify-content-center flex-column flex-md-row">
<div>Copyright 2022 © Grupa .NET PK</div>
<div class="px-1 d-none d-md-block">-</div>
<div>Stworzone z<span style="color: #ff2929; padding: 0 0.125rem;"><i class="fas fa-heart fa-fw" aria-hidden="true"></i></span>przez <a href="https://www.facebook.com/grupadotnetpk/">Grupa .NET PK</a></div>
</small>
</div>
</footer>
</body>
</html>