-
Notifications
You must be signed in to change notification settings - Fork 238
HTML & CSS Basics practice - Done #225
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
TetraMeister
wants to merge
10
commits into
devmentor-pl:master
Choose a base branch
from
TetraMeister:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
a611a18
Task01 Done - HTML Semantic Structure
TetraMeister 61382bd
Task01 Table fix
TetraMeister 8cd3430
Task02 Done - CSS selectors added
TetraMeister 0444027
Task03 Inline block, FlexBox added
TetraMeister 2052aee
Css styling float added
TetraMeister 5af6f36
Task04 CSS & HTML Structure + positioning
TetraMeister 8a5aed4
Task04 CSS menu bar added
TetraMeister 35047dd
Task04 Done
TetraMeister d16089f
Task05 Done - layout fexbox
TetraMeister db2a5ab
2nd try Task05: CSS and HTML layout Done
TetraMeister File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,12 +1,318 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="pl"> | ||
|
|
||
| <head> | ||
| <meta charset="UTF-8"> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
| <meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
| <meta | ||
| name="viewport" | ||
| content="width=device-width, initial-scale=1.0" | ||
| > | ||
| <meta | ||
| http-equiv="X-UA-Compatible" | ||
| content="ie=edge" | ||
| > | ||
| <title>devmentor.pl - HTML & CSS BASICS - #01</title> | ||
| </head> | ||
|
|
||
| <body> | ||
|
|
||
|
|
||
| <header> | ||
| <picture> | ||
| <source | ||
| media="(min-width: 1024px)" | ||
| srcset="./images/logo-large.jpg" | ||
| > | ||
| <source srcset="./images/logo-small.jpg"> | ||
| <img | ||
| src="./images/logo-small.jpg" | ||
| alt="Logo Uczelni XYZ" | ||
| > | ||
| </picture> | ||
| <nav> | ||
| <ul> | ||
| <li> | ||
| <a href="#">O Uczelni</a> | ||
| <ul> | ||
| <li><a href="#">Historia</a></li> | ||
| <li><a href="#">Władze Uczelni</a></li> | ||
| <li><a href="#">Struktura organizacyjna</a></li> | ||
| <li><a href="#">Misja i wizja</a></li> | ||
| <li><a href="#">Kontakt</a></li> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <a href="#">Wydziały i Kierunki</a> | ||
| <ul> | ||
| <li> | ||
| <a href="#">Wydział Informatyki</a> | ||
| <ul> | ||
| <li><a href="#">Informatyka</a></li> | ||
| <li><a href="#">Informatyka stosowana</a></li> | ||
| <li><a href="#">Cyberbezpieczeństwo</a></li> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <a href="#">Wydział Zarządzania</a> | ||
| <ul> | ||
| <li><a href="#">Zarządzanie</a></li> | ||
| <li><a href="#">Logistyka</a></li> | ||
| <li><a href="#">Marketing</a></li> | ||
| </ul> | ||
| </li> | ||
| <li><a href="#">Wydział Prawa</a></li> | ||
| <li><a href="#">Wydział Architektury</a></li> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <a href="#">Dla Kandydatów</a> | ||
| <ul> | ||
| <li><a href="#">Rekrutacja</a></li> | ||
| <li><a href="#">Dni otwarte</a></li> | ||
| <li><a href="#">Studia I stopnia</a></li> | ||
| <li><a href="#">Studia II stopnia</a></li> | ||
| <li><a href="#">Studia podyplomowe</a></li> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <a href="#">Dla Studentów</a> | ||
| <ul> | ||
| <li><a href="#">Plan zajęć</a></li> | ||
| <li><a href="#">Biblioteka</a></li> | ||
| <li><a href="#">Stypendia</a></li> | ||
| <li><a href="#">Dziekanat</a></li> | ||
| <li><a href="#">Akademik</a></li> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <a href="#">Nauka i Badania</a> | ||
| <ul> | ||
| <li><a href="#">Projekty badawcze</a></li> | ||
| <li><a href="#">Publikacje naukowe</a></li> | ||
| <li><a href="#">Konferencje</a></li> | ||
| <li><a href="#">Współpraca międzynarodowa</a></li> | ||
| </ul> | ||
| </li> | ||
| <li> | ||
| <a href="#">Aktualności</a> | ||
| <ul> | ||
| <li><a href="#">Ogłoszenia</a></li> | ||
| <li><a href="#">Komunikaty</a></li> | ||
| <li><a href="#">Wydarzenia</a></li> | ||
| </ul> | ||
| </li> | ||
| <li><a href="#">ZALOGUJ</a></li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
|
|
||
| <main> | ||
| <article id="post-01"> | ||
| <header> | ||
| <h2><a href="#post-01">Otwarta Rekrutacja!</a></h2> | ||
| <p> | ||
| Autor: <strong>Rektor Uczelni XYZ</strong> | ||
| <time datetime="2026-01-07T18:20:06+00:00">07.01.2026, 18:20</time> | ||
| </p> | ||
| </header> | ||
| <div> | ||
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Atque dolores possimus tenetur. Expedita | ||
| atque unde explicabo odio, doloremque libero suscipit iure dicta veniam aliquid a consectetur ut | ||
| harum assumenda corrupti.lorem Lorem ipsum dolor sit amet consectetur, adipisicing elit. Eius | ||
| suscipit excepturi aliquam, magni molestias incidunt ipsam ad, odit commodi veritatis debitis, | ||
| sapiente natus deserunt temporibus ipsum eveniet sunt nisi hic! Lorem ipsum dolor sit amet | ||
| consectetur adipisicing elit. Quo voluptatem laboriosam magnam dolor molestias minus! Nam, odit. | ||
| Adipisci reprehenderit totam ad excepturi sint quas quidem, aliquid exercitationem aspernatur | ||
| mollitia sit!</p> | ||
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Quisquam, doloremque perspiciatis aliquid | ||
| vitae cum nulla error distinctio dicta blanditiis animi possimus totam rem porro praesentium omnis | ||
| nam aspernatur necessitatibus culpa. Lorem ipsum dolor sit amet consectetur adipisicing elit. Iste, | ||
| deserunt. Est quam labore dolor hic placeat veritatis nisi. Rerum sint maxime impedit ad, omnis quod | ||
| nisi reprehenderit rem dolores! Voluptates? Lorem, ipsum dolor sit amet consectetur adipisicing | ||
| elit. Quasi atque repudiandae dicta quas suscipit tenetur iste pariatur eveniet fugiat voluptate | ||
| itaque enim nobis ratione, accusantium cumque voluptatum aut fuga non?</p> | ||
| <figure> | ||
| <img | ||
| src=".images/wykres.jpg" | ||
| alt="Wykres słupkowy" | ||
| > | ||
| <figcaption>Wykres przedstawia liczby przyjmowanych studentów w latach 2020-2026</figcaption> | ||
| </figure> | ||
| <table> | ||
| <caption>Tabela oplat rekrutacji</caption> | ||
| <colgroup> | ||
| <col | ||
| span="2" | ||
| style="background-color: yellow;" | ||
| > | ||
| <col | ||
| span="1" | ||
| style="background-color: red;" | ||
| > | ||
| </colgroup> | ||
| <thead> | ||
| <tr> | ||
| <th scope="col">Tryb studiów</th> | ||
| <th scope="col">Stopień studiów</th> | ||
| <th scope="col">Opłata rektutacyjna</th> | ||
| </tr> | ||
| </thead> | ||
| <tbody> | ||
| <tr> | ||
| <td>Stacjonarne</td> | ||
| <td>I stopień</td> | ||
| <td>80zł</td> | ||
| </tr> | ||
| <tr> | ||
| <td>Stacjonarne</td> | ||
| <td>II stopień</td> | ||
| <td>120zł</td> | ||
| </tr> | ||
| <tr> | ||
| <td>Zaoczne</td> | ||
| <td>I stopień</td> | ||
| <td>100zł</td> | ||
| </tr> | ||
| <tr> | ||
| <td>Zaoczne</td> | ||
| <td>II stopień</td> | ||
| <td>140zł</td> | ||
| </tr> | ||
| </tbody> | ||
| </table> | ||
| </div> | ||
| <footer> | ||
| <section>Tagi</section> | ||
| </footer> | ||
| </article> | ||
| <section id="comments"> | ||
| <ol> | ||
| <li> | ||
| <article id="comment-01"> | ||
| <header> | ||
| <a href="comment-01"> | ||
| <time datetime="2026-01-07T20:41:06+00:00">07.01.2026, 20:41</time> | ||
| </a> | ||
| <h3> | ||
| <b> | ||
| <a href="http://example.net/"><img | ||
| src="htpps://example.net/awatary/awatar.jpg" | ||
| alt="Awatar użytkownika" | ||
| height="48px" | ||
| width="48px" | ||
| > | ||
| Łukasz | ||
| </a> | ||
| skomentował | ||
| </b> | ||
| </h3> | ||
| </header> | ||
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim voluptas saepe necessitatibus | ||
| et ipsa dolores dolore sint dignissimos illum atque itaque adipisci sapiente alias, aliquid | ||
| fugit, animi cupiditate nam aut.</p> | ||
| </article> | ||
| <li> | ||
| <article id="comment-01"> | ||
| <header> | ||
| <a href="comment-01"> | ||
| <time datetime="2026-01-07T22:50:06+00:00">07.01.2026, 22:50</time> | ||
| </a> | ||
| <h3> | ||
| <b> | ||
| <a href="http://example.net/"><img | ||
| src="htpps://example.net/awatary/awatar.jpg" | ||
| alt="Awatar użytkownika" | ||
| height="48px" | ||
| width="48px" | ||
| > | ||
| Kasia | ||
| </a> | ||
| skomentowała | ||
| </b> | ||
| </h3> | ||
| </header> | ||
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim voluptas saepe necessitatibus | ||
| et ipsa dolores dolore sint dignissimos illum atque itaque adipisci sapiente alias, aliquid | ||
| fugit, animi cupiditate nam aut.</p> | ||
| </article> | ||
| <li> | ||
| <article id="comment-01"> | ||
| <header> | ||
| <a href="comment-01"> | ||
| <time datetime="2026-01-20T13:13:06+00:00">20.01.2026, 13:13</time> | ||
| </a> | ||
| <h3> | ||
| <b> | ||
| <a href="http://example.net/"><img | ||
| src="htpps://example.net/awatary/awatar.jpg" | ||
| alt="Awatar użytkownika" | ||
| height="48px" | ||
| width="48px" | ||
| > | ||
| Bartek | ||
| </a> | ||
| skomentował | ||
| </b> | ||
| </h3> | ||
| </header> | ||
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Enim voluptas saepe necessitatibus | ||
| et ipsa dolores dolore sint dignissimos illum atque itaque adipisci sapiente alias, aliquid | ||
| fugit, animi cupiditate nam aut.</p> | ||
| </article> | ||
| </li> | ||
| </ol> | ||
| <form | ||
| action="./src/add-comment.php" | ||
| method="POST" | ||
| > | ||
| <p> | ||
| <label> | ||
| Nazwa użytkownika | ||
| <input | ||
| type="text" | ||
| name="username" | ||
| id="user-name" | ||
| placeholder="Nazwa użytkownika" | ||
| > | ||
| </label> | ||
| </p> | ||
| <p> | ||
| <label> | ||
| <input | ||
| type="email" | ||
| name="email" | ||
| id="user-email" | ||
| placeholder="Adres email" | ||
| > | ||
| </label> | ||
| </p> | ||
| <p> | ||
| <label for="comment-comment">Komentarz</label> | ||
| <textarea | ||
| name="comment" | ||
| id="comment-comment" | ||
| placeholder="Dodaj komentarz" | ||
| rows="10" | ||
| cols="50" | ||
| required | ||
| style="resize: none;" | ||
| ></textarea> | ||
| </p> | ||
| <p> | ||
| <button | ||
| type="submit" | ||
| name="submit" | ||
| id="comment-submit" | ||
| >Publikuj</button> | ||
| </p> | ||
| </form> | ||
| </section> | ||
| </main> | ||
|
|
||
| </body> | ||
|
|
||
| <footer> | ||
| ©2025 TetraMeister | ||
| </footer> | ||
|
|
||
| </html> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍