-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
45 lines (34 loc) · 1.5 KB
/
blog.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>
<title>Exercise 1 - Hello World</title>
<meta charset="utf-8">
<link rel="stylesheet" href="CSS/blog.css">
<script src="./JS/blog.js"></script>
<link href="https://fonts.googleapis.com/css?family=Inconsolata&display=swap" rel="stylesheet">
<script src='https://kit.fontawesome.com/a076d05399.js'></script>
<link rel="shortcut icon" href="./pictures/ICON.png" />
<meta property="og:title" content="Blog of Secrets" />
<meta property="og:type" content="Christian's Blog" />
<meta property="og:url" content="Christian.baltzer.de" />
<meta property="og:image" content="./img/ICON.png" />
</head>
<body onload="newElement()">
<nav>
<ul>
<li><a href="index.html"> ⩤ Main Page</a></li>
</ul>
</nav>
<header id = "Header">
<h1 class = "headerLetters">My First Blog</h1>
<h2 class = "headerLetters">Welcome to my Page</h2>
</header>
<div class = "contentPanel" id="BlogentryProgram">
</div>
<footer>
<h2>Made with 🖥 and ❤️</h2>
<div class="counter"></div>
<a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/4.0/"><img alt="Creative Commons Licence" style="border-width:0" src="https://i.creativecommons.org/l/by-nc-sa/4.0/88x31.png" /></a>
</footer>
</body>
</html>