forked from saivaish96/Flexbox-Demo-for-INST---630
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
56 lines (51 loc) · 2.11 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="index.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
</head>
<body>
<header>
<div class="wrapper wrapper-header flex-row">
<div class="title">
<h1 class="main-title">Living the simple life</h1>
<p class="main-subtitle">A blog exploring minimalism in life</p>
</div>
<nav class="main-nav">
<ul>
<li><a class="nav-link active" href="#">Home</a></li>
<li><a class="nav-link" href="#">About me</a></li>
<li><a class="nav-link" href="#">Recent posts</a></li>
</ul>
</nav>
</div>
</header>
<div class="wrapper flex-row wrapper-main">
<main role="main">
<!-- Featured article starts here-->
<article class="article-featured flex-column">
<h2 class="article-title">Finding simplicity in life</h2>
<img src="https://picsum.photos/id/237/920/400" alt="Dog on the wooden floor looking at the camera.">
<p class="article-meta-info">July 23, 2019 | 3 comments</p>
<p><strong>Finding simplicity in life Life can get complicated really quickly</strong>, but it doesn't have to be! There are many ways to simplify your life, <a href="#" class="sentence-link">a few of which we've explored in the past.</a> This week we're taking a bit of a approach though, in how you can find simplicity in the life you already living.</p>
<a href="#" class="action-link">Continue reading</a>
</article>
<canvas id="myChart" width="400" height="400"></canvas>
</main>
<aside>
<!-- Aside blocks -->
<article class="aside-about-me">
<h3 class="aside-block-title">About me</h3>
<img src="https://www.fillmurray.com/g/920/300" alt="Fill Muray">
<p>I find life better, and I'm happier, when things are nice and simple.</p>
</article>
</aside>
</div>
<footer class="flex-column">
<p><strong>Living the Simple life</strong></p>
<p>Copyright 2020</p>
</footer>
<!-- <script src="./script.js"></script> -->
<script src="./async_script.js"></script>
</body>
</html>