Compare commits
2 commits
79ca543f79
...
8be445d412
작성자 | SHA1 | 날짜 | |
---|---|---|---|
8be445d412 | |||
904aa53264 |
4개의 변경된 파일과 55개의 추가작업 그리고 0개의 파일을 삭제
BIN
athens.jpg
Normal file
BIN
athens.jpg
Normal file
Binary file not shown.
After Width: | Height: | 크기: 253 KiB |
8
main.css
Normal file
8
main.css
Normal 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
32
main.html
Normal 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
15
text.css
Normal 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; ;
|
||||||
|
}
|
||||||
|
|
불러오는 중…
Reference in a new issue