-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Boxlovers' Blog</title>
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/index_layout.css">
</head>
<body>
<header>
<h1>Boxlovers' Blog</h1>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="blog-post.html">Blog</a>
</li>
</ul>
</nav>
</header>
<article>
<div id="main">
<div id="blog-image"></div>
<div id="blog-description">
<h2>The greatest invention</h2>
<h3>Written by Bence László (Front-End Developer and Box-sommelier)</h3>
<blockquote>
I like boxes. Box is the greatest invention since fire in my honest opinion. Click the
button below and I will explain why!
</blockquote>
<a id="blog-read" href="blog-post.html">Read</a>
</div>
</div>
</article>
<footer>
<p>Boxlovers' Blog - Made by Bence László 2020</p>
</footer>
</body>
</html>