-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 2.35 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
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>Martin's Blog</title>
</head>
<body class="home-body">
<!--Header of the main page-->
<header class="home-header">
<h1>Welcome to my first project</h1>
</header>
<!--Start of the navigation section-->
<nav class="home-nav">
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="blogPost.html">Example</a>
</li>
<li>
<a href="subscribeForm.html">Form</a>
</li>
</ul>
</nav>
<!--This is where the subscribe button goes-->
<a href="subscribeForm.html">
<button type="button" class="subscribe-button-home">
<h3>SUBSCRIBE TO GET MORE</h3>
</button>
</a>
<!--Here is the main content-->
<main class="home-main">
<a href="blogPost.html">
<section class="card-home">
<img src="img/fallguys-screenshot.jpg" alt="Screenshot Palceholder" class="card-image-home">
<div class="card-content-home">
<div class="card-title-home">
<div class="card-name-home">Something special about Fall Guys</div>
<img title= "Avatar" src="img/avatar.jpg" alt="Avatar Placeholder" class="card-avatar-home">
</div>
<div class="card-description-home">After trying the beta of Fall Guys on PC I want to talk about <q>my experience</q>. Let's have a look...</div>
</div>
<div class="card-date-readtime-home">
<p>2020-12-28</p>
<p>2 minutes</p>
</div>
</section>
</a>
</main>
<!--Begin of the footer area-->
<footer class="home-footer">
<p>© Footer stuff, not food stuff.</p>
</footer>
</body>
</html>