-
Notifications
You must be signed in to change notification settings - Fork 238
practice-html-and-css-basics #211
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
bartoszdudziak-dev
wants to merge
5
commits into
devmentor-pl:master
Choose a base branch
from
bartoszdudziak-dev: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
5 commits
Select commit
Hold shift + click to select a range
3a9d157
Semantic HTML Structure
bartoszdudziak-dev 9fdb090
Selectors completed
bartoszdudziak-dev e733872
Three methods of placing elements in one line
bartoszdudziak-dev fa4dda9
Multi Level Dropdown Menu
bartoszdudziak-dev 9cd84ed
Layout created
bartoszdudziak-dev 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,210 @@ | ||
| <!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"> | ||
| <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" /> | ||
| <title>devmentor.pl - HTML & CSS BASICS - #01</title> | ||
| </head> | ||
| <body> | ||
|
|
||
| </body> | ||
| </html> | ||
| </head> | ||
|
|
||
| <body> | ||
| <header> | ||
| <h1>Website Name</h1> | ||
| <nav> | ||
| <ul> | ||
| <li> | ||
| <a href="#">Home</a> | ||
| </li> | ||
|
|
||
| <li> | ||
| Articles | ||
| <ul> | ||
| <li> | ||
| <a href="#html">HTML</a> | ||
| </li> | ||
| <li> | ||
| <a href="#css">CSS</a> | ||
| </li> | ||
| <li> | ||
| <a href="#js">JavaScript</a> | ||
| </li> | ||
| </ul> | ||
| </li> | ||
|
|
||
| <li> | ||
| <a href="#comments">Comments</a> | ||
| </li> | ||
|
|
||
| <li> | ||
| <a href="#about">About</a> | ||
| </li> | ||
| </ul> | ||
| </nav> | ||
| </header> | ||
|
|
||
| <main> | ||
| <section id="articles"> | ||
| <h2>Articles</h2> | ||
|
|
||
| <!-- HTML ARTICLE --> | ||
| <article id="html"> | ||
| <h3>HTML</h3> | ||
|
|
||
| <p> | ||
| Lorem ipsum dolor, sit amet consectetur adipisicing elit. Vero animi | ||
| voluptas quo quisquam laboriosam suscipit qui esse omnis, rem | ||
| doloribus! | ||
| </p> | ||
|
|
||
| <div> | ||
| Posted on | ||
| <time datetime="2024-12-16">December 16th, 2024</time> | ||
| <address>by <strong>Bartosz Dudziak</strong></address> | ||
| </div> | ||
|
|
||
| <figure> | ||
| <img | ||
| width="100" | ||
| src="https://upload.wikimedia.org/wikipedia/commons/6/61/HTML5_logo_and_wordmark.svg" | ||
| alt="HTML Logo" | ||
| /> | ||
| <figcaption>HTML Logo</figcaption> | ||
| </figure> | ||
| </article> | ||
|
|
||
| <!-- CSS ARTICLE --> | ||
| <article id="css"> | ||
| <h3>CSS</h3> | ||
|
|
||
| <p> | ||
| Lorem ipsum dolor sit, amet consectetur adipisicing elit. Odio odit | ||
| quisquam nihil non ut nobis, quae cupiditate necessitatibus | ||
| voluptatum cum commodi ipsam amet sapiente magnam, nulla | ||
| exercitationem quod earum facilis? | ||
| </p> | ||
|
|
||
| <div> | ||
| Posted on | ||
| <time datetime="2024-12-16">December 16th, 2024</time> | ||
|
|
||
| <address>by <strong>Bartosz Dudziak</strong></address> | ||
| </div> | ||
|
|
||
| <figure> | ||
| <img | ||
| width="100" | ||
| src="https://upload.wikimedia.org/wikipedia/commons/6/62/CSS3_logo.svg" | ||
| alt="CSS Logo" | ||
| /> | ||
| <figcaption>CSS Logo</figcaption> | ||
| </figure> | ||
| </article> | ||
|
|
||
| <!-- JavaScript ARTICLE --> | ||
| <article id="js"> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptate | ||
| soluta ad harum dolor alias deserunt vel, ipsa a quae quidem | ||
| recusandae? Quam, ullam sit corporis, commodi distinctio iure | ||
| nesciunt eveniet, laboriosam modi numquam porro voluptate maiores | ||
| minus delectus labore cumque cupiditate? Saepe, amet totam nisi | ||
| neque, ut officiis ratione voluptate fugiat tenetur veniam omnis | ||
| laborum accusamus, soluta odio. Deleniti, nihil | ||
| </p> | ||
|
|
||
| <div> | ||
| Posted on | ||
| <time datetime="2024-12-16">December 16th, 2024</time> | ||
| <address>by <strong>Bartosz Dudziak</strong></address> | ||
| </div> | ||
|
|
||
| <figure> | ||
| <img | ||
| width="100" | ||
| src="https://upload.wikimedia.org/wikipedia/commons/thumb/9/99/Unofficial_JavaScript_logo_2.svg/640px-Unofficial_JavaScript_logo_2.svg.png" | ||
| alt="JavaScript Logo" | ||
| /> | ||
| <figcaption>JavaScript Logo</figcaption> | ||
| </figure> | ||
|
|
||
| <table> | ||
| <caption> | ||
| Top 3 JavaScript Frameworks | ||
| </caption> | ||
| <thead> | ||
| <tr> | ||
| <th>Name</th> | ||
| <th>Popularity</th> | ||
| <th>Created by</th> | ||
| </tr> | ||
| </thead> | ||
| <tbody> | ||
| <tr> | ||
| <th>React</th> | ||
| <td>39.5%</td> | ||
| <td>Meta</td> | ||
| </tr> | ||
| <tr> | ||
| <th>Angular</th> | ||
| <td>17.1%</td> | ||
| <td>Google</td> | ||
| </tr> | ||
| <tr> | ||
| <th>Vue</th> | ||
| <td>15.4%</td> | ||
| <td>Evan You</td> | ||
| </tr> | ||
| </tbody> | ||
| </table> | ||
| </article> | ||
| </section> | ||
|
|
||
| <section id="comments"> | ||
| <h2>Comments</h2> | ||
| <form> | ||
| <textarea id="newComment" cols="40" rows="10"> | ||
| Leave your commnet...</textarea | ||
| > | ||
| <button type="submit">Submit</button> | ||
| </form> | ||
|
|
||
| <div> | ||
| <ul> | ||
| <li> | ||
| <p> | ||
| Lorem ipsum dolor sit amet consectetur adipisicing elit. | ||
| Accusamus, temporibus. | ||
| </p> | ||
| <div> | ||
| <address>Harry Potter</address> | ||
| <time datetime="2024-12-16">December 16th, 2024</time> | ||
| </div> | ||
| </li> | ||
|
|
||
| <li> | ||
| <p> | ||
| Lorem ipsum dolor sit, amet consectetur adipisicing elit. | ||
| Recusandae, sapiente odit doloribus illo in quam nisi ipsum | ||
| fugit eligendi repellat? | ||
| </p> | ||
| <div> | ||
| <address>Ron Weasley</address> | ||
| <time datetime="2024-12-16">December 16th, 2024</time> | ||
| </div> | ||
| </li> | ||
|
|
||
| <li> | ||
| <p>Lorem ipsum dolor sit amet.</p> | ||
| <div> | ||
| <address>Hermione Granger</address> | ||
| <time datetime="2024-12-16">December 16th, 2024</time> | ||
| </div> | ||
| </li> | ||
| </ul> | ||
| </div> | ||
| </section> | ||
| </main> | ||
|
|
||
| <footer id="about"><div>© 2024 Bartosz Dudziak</div></footer> | ||
| </body> | ||
| </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.
Warto pole formularza osadzić w jakiś element blokowy np.
divlubp