Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions 01/images/thunderstorm-clouds.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions 01/images/topweather.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 133 additions & 9 deletions 01/index.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,136 @@
<!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>
<nav>
<a href="/">
<img
src="./images/topweather.svg"
alt="Logo Alt Text"
loading="lazy"
title="Visit Homepage" />
</a>
<ul>
<li>O mnie</li>
<li>
Portfolio
<ul>
<li>Galeria Sztuki</li>
<li>Wizualizacja Online</li>
</ul>
</li>
<li>Oferta</li>
<li>Kontakt</li>
</ul>
</nav>
</header>
<hr />

<main>
<article>
<h1>Weather forecast for Poland</h1>
<div>
<img src="./images/thunderstorm-clouds.svg" alt="Stormy Cloud" />
</div>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua.
</p>
<p>
<b>
Posted on
<time datetime="2025-02-10 09:00">February 10</time>
by Mateusz
</b>
</p>

<table>
<caption>List of Articles</caption>
<thead>
<tr>
<th scope="col">Article Name</th>
<th scope="col">Author</th>
<th scope="col">Date Published</th>
<th scope="col">Comments Amount</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Weather forecast for Poland</th>
<td>Mateusz</td>
<td>
<time datetime="2025-02-10 09:00">February 10, 2025</time>
</td>
<td>3</td>
</tr>
</tbody>
</table>
</article>

<h2>Your super stormy comment</h2>
<form action="./add-comment.php" id="form" method="POST">
<fieldset>
<legend>About the weather</legend>
<div>
<label for="name">
Name
<input type="text" name="firstName" id="name" required />
</label>
</div>
<div>
<textarea rows="4" cols="50" name="comment" form="form">
Enter your comment here...</textarea
>
</div>
<div><input type="submit" value="Comment!" /></div>
</fieldset>
</form>

<section>
<h2>Comments</h2>
<div>
<h3>Mateusz</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<time datetime="2025-02-10 09:00">February 10, 2025</time>
<hr />

<h3>Zaneta</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<time datetime="2025-02-10 09:00">February 10, 2025</time>
<hr />

<h3>Jan</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud
exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</p>
<time datetime="2025-02-10 09:00">February 10, 2025</time>
<hr />
</div>
</section>

<footer>
<div>&copy; 2025 topweather.com</div>
</footer>
</main>
</body>
</html>
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

Loading