-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
74 lines (74 loc) · 4.5 KB
/
index.html
File metadata and controls
74 lines (74 loc) · 4.5 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
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
<!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 rel="icon" type="image/png" href="./Unified Lynx Government_files/logo.png"> -->
<!-- CSS Files -->
<!-- CSS only -->
<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">
<!-- JS -->
<!-- JavaScript Bundle with Popper -->
<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>
<!-- Fonts -->
</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">
<div class="timeline">
<div class="col-lg-12 justify-content-center align-items-center mb-2">
<h1>Potrzebne informacje</h1>
</div>
<p>Pracujemy w technologii .NET - potrzebujemy IDE od Microsoftu, czyli <a href="https://visualstudio.microsoft.com/pl/downloads/">Visual Studio 2022 Community</a></p>
<p>Do pracy w .Net Notebooks oraz do pracy z np. Angularem korzystamy z <a href="https://code.visualstudio.com/">Visual Studio Code</a></p>
<p>.NET 6 też trzeba mieć. Pobierz go <a href="https://dotnet.microsoft.com/en-us/download/dotnet/6.0">tutaj</a></p>
<p>Korzystamy z systemu kontroli wersji <a href="https://git-scm.com/">git</a></p>
<p>Graficzne narzędzie do gita możesz wybrać sam. My polecamy <a href="https://git-fork.com/">git-fork</a></p>
<p>Oraz oczywiście potrzebne Ci będzie konto na <a href="https://github.com/">Githubie</a></p>
<p>Nasze projekty możesz zobaczyć <a href="./projects.html">tutaj</a></p>
</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>