-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblogPost.html
60 lines (60 loc) · 3.2 KB
/
blogPost.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!--Following viewport added for responsivness on mobile devices-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Link to css file-->
<link rel="stylesheet" href="css/main.css">
<title>Example blog post</title>
</head>
<body class="blog-body">
<!--Head of the blog post-->
<header class="blog-header">
<h1>Something special about Fall Guys</h1>
</header>
<!--Content of the blog post-->
<main class="blog-main">
<section class="main-area-blog">
<section class="blog-text-area">
Thinking about getting some free time playing the recent <ins>Fall Guys</ins> on PC brought me to the news that the game is doing a <b>beta phase</b> right before launch. So I downloaded the client, steped right into it and after waiting a couple of minutes for 60 participants to meet the shots from the past felt right at home. Like in <i>Takeshi‘s Castle</i> the goal is to reach the finish line and to not get knocked out be the surroundings or the other players. Thank you for reading my placeholder text.
</section>
<!--Nav bar is included in the main part for design reasons-->
<ul class="blog-ul">
<li class="blog-li">
<a href="index.html">Home</a>
</li>
<li class="blog-li">
<a href="blogPost.html">Example</a>
</li>
<li class="blog-li">
<a href="subscribeForm.html">Form</a>
</li>
</ul>
<section class="author-area-blog">
<div class="area-title-blog">Author Info</div>
<div class="author-title-blog">
<div class="author-name-blog">Martin Schuhmacher</div>
<img src="img/avatar.jpg" class="author-avatar-blog">
</div>
<div class="author-company-blog">Working at: Hasso-Plattner-Institut (HPI) in Germany</div>
<div class="author-bio-blog">Short Bio: Started as a Sales Person and a Project Manager now with a Master Degree in Mathematics working in digital education.</div>
</section>
</section>
</main>
<!--Start of the footer with social media-->
<footer class="blog-footer">
<section class="social-footer social-footer-blog">
<a href="https://twitter.com/?lang=de">
<img title="Twitter" alt="Twitter Placeholder" src="img/twitter.jpg" class="twitter-link">
</a>
<a href="https://www.facebook.com/">
<img title="Facebook" alt="Facebook Placeholder" src="img/facebook.jpg" class="facebook-link">
</a>
<a href="https://www.linkedin.com/">
<img title="LinkedIn" alt="LinkedIn Placeholder" src="img/linkedin.jpg" class="linkedin-link">
</a>
</section>
</footer>
</body>
</html>