Explorer
project
hometownWebside
.git
.gitattributes
github.png
guide.png
index.html
style.css
images
Dependencies
Bootcamp
Study group
Collaborate with peers in your dedicated #study-group channel.
Code reviews
Submit projects for review using the /review
command in your #code-reviews channel
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<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=Montserrat&display=swap" rel="stylesheet">
<title>Moje miasto, GdaΕsk</title>
</head>
<body>
<header id="hero">
<h1>GdaΕsk, Poland</h1>
<h2>Situated on the coast of the Baltic Sea, Gdansk is the capital city of Pomeranian Voivodship. Together with two other cities, Sopot and Gdynia, it forms a conurbation known as the Tricity.</h2>
<a href="#activities"><button id="fom" href="main">Find out more</button></a>
</header>
<main>
<h1>So Much More to Discover⦠</h1>
<div id="activities">
<div class="activity-card">
<h2 class="h2-activity">Oliwa Park</h2>
<img src="https://s-trojmiasto.pl/zdj/c/n/9/2444/3000x0/2444673-Palac-Opatow-i-ogrod-francuski-otoczony-szpalerami-starych-lip.jpg" alt="Biggest park in GdaΕsk, lots of trees and alleys" class="img-activity">
<p class="p-activity">Oliwa Park is one of the biggest parks in Gdansk. You can find there a peace of mind even in a rush hours. Find yourself in a beautiful scene surrounded by nature.</p>
</div>
<div class="activity-card">
<h2 class="h2-activity">Old Town</h2>
<img src="https://media.hrs.com/media/image/97/37/e9/Podewils_Old_Town_Gdansk-Danzig-Aussenansicht-2-85963.jpg" alt="Old town, old buildings by the Motlawa River" class="img-activity">
<p class="p-activity">Gdansk has one of the oldest Old Towns in Poland. You can find there stunning architecture and amazing food!</p>
</div>
<div class="activity-card" >
<h2 class="h2-activity">Beaches</h2>
<img src="https://cf.bstatic.com/xdata/images/hotel/max1024x768/259338090.jpg?k=5db5da35371e48f28816e00690621e4a56b60e43afc5484602e8f5921978d04e&o=&hp=1" alt="Picture of a beach" class="img-activity">
<p class="p-activity">If You feel like sunbathing, You can always visit one of our Beaches and see Baltic Sea at your own eyes.</p>
</div>
</div>
</main>
<footer>
<div id="guide">
<img id="tour-guide" src="guide.png" alt="Tour guide in a shirt and a luggage">
<div class="desc">
<h2>I'll guide you around Gdansk!</h2>
<p>My name is Oliwier and I live in Gdansk for over 22 years, I was born here! We could visit every bit of the city. I am working on my Fronted Engineer Degree and doing Scrimba Career Path. See you around ππ (Not my actual photo, couldn't find one)</p>
<a href="https://github.com/oliwierPosiakow" target="_blank"><img src="github.png" alt="Github link" id="desc-img"></a>
</div>
</div>
</footer>
</body>
</html>