This commit is contained in:
Georgia Koutsodima 2022-12-06 18:15:40 +01:00
parent 0794712fbb
commit 904aa53264
4 changed files with 55 additions and 0 deletions

BIN
athens.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

8
main.css Normal file
View file

@ -0,0 +1,8 @@
body{
background-image: url(./athens.jpg);
background-repeat: no-repeat;
background-size:cover;
width: 1900px;
height: 300px;
}

32
main.html Normal file
View file

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="text.css">
</head>
<body>
<header>
<nav class="B">
<h4><a href>Main Page</a></h4>
<h4><a href>Where To Go</a></h4>
<h4><a href>History</a></h4>
<h4><a href>Food and Lifestyle</a></h4>
<h4> <a href>Frequently Asked Questions</a></h4>
</nav>
</header>
<hr/>
<main>
<section>
<article>
<p>Visit Greece</p>
</article>
</section>
</main>
<hr/>
<footer>
<p>© Copyright 2022 by 3MIC. All Rights Reserved</p>
</footer>
</body>
</html>

15
text.css Normal file
View file

@ -0,0 +1,15 @@
.B {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 20px;
list-style: none;
line-height: 1.55;
}
body{
font-family: AeonikPro-Bold,Arial,sans-serif;
font-size: .9333333333rem;
letter-spacing: 0; ;
}