-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (121 loc) · 4.33 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="favicon.png" />
<title>Maya Asmara</title>
<link rel="stylesheet" href="index.css" />
</head>
<body>
<!--Navigation-->
<nav class="navigation">
<a href="/"><img class="logo" src="favicon.png" alt="Logo" /></a>
<div class="navigation-links">
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/contact">Contact</a>
</div>
</nav>
<!--Main Content-->
<main>
<!--Featured Article-->
<div class="featured-article">
<div>
<img
class="featured-image"
src="images/featured-image.jpg"
alt="Featured Image"
/>
</div>
<div class="featured-article-info">
<a href="/articles/happiness-blessing-that-comes-from-suffering">
<h1>Happiness: A Blessing That Comes From Suffering</h1>
</a>
<p>by <b>Maya Asmara</b> a year ago</p>
</div>
</div>
<!--Articles Section-->
<div>
<div class="topic-section">
<p class="topic-heading">DISCOVER YOUR FAVORITE TOPICS</p>
<div class="topic-list">
<a href="/topic/work-productivity">WORK & PRODUCTIVITY</a>
<a href="/topic/mental-health">MENTAL HEALTH</a>
<a href="/topic/self-development">SELF DEVELOPMENT</a>
<a href="/topic/relationship">RELATIONSHIP</a>
<a href="/topic/book-review">BOOK REVIEW</a>
</div>
</div>
<div class="article-card-list">
<!--Article Card-->
<div class="article-card">
<a href="/articles/why-we-procrastinate-when-we-have-more-time">
<h1>Why We Procrastinate When We Have More Time</h1>
<p>by <b>Maya Asmara</b> 6 months ago</p>
<p>WORK & PRODUCTIVITY</p>
</a>
</div>
<!--Article Card-->
<div class="article-card">
<a href="/articles/why-we-procrastinate-when-we-have-more-time">
<h1>Why We Procrastinate When We Have More Time</h1>
<p>by <b>Maya Asmara</b> 6 months ago</p>
<p>WORK & PRODUCTIVITY</p>
</a>
</div>
<!--Article Card-->
<div class="article-card">
<a href="/articles/why-we-procrastinate-when-we-have-more-time">
<h1>Why We Procrastinate When We Have More Time</h1>
<p>by <b>Maya Asmara</b> 6 months ago</p>
<p>WORK & PRODUCTIVITY</p>
</a>
</div>
<!--Article Card-->
<div class="article-card">
<a href="/articles/why-we-procrastinate-when-we-have-more-time">
<h1>Why We Procrastinate When We Have More Time</h1>
<p>by <b>Maya Asmara</b> 6 months ago</p>
<p>WORK & PRODUCTIVITY</p>
</a>
</div>
<!--Article Card-->
<div class="article-card">
<a href="/articles/why-we-procrastinate-when-we-have-more-time">
<h1>Why We Procrastinate When We Have More Time</h1>
<p>by <b>Maya Asmara</b> 6 months ago</p>
<p>WORK & PRODUCTIVITY</p>
</a>
</div>
<!--Article Card-->
<div class="article-card">
<a href="/articles/why-we-procrastinate-when-we-have-more-time">
<h1>Why We Procrastinate When We Have More Time</h1>
<p>by <b>Maya Asmara</b> 6 months ago</p>
<p>WORK & PRODUCTIVITY</p>
</a>
</div>
</div>
<div class="more-articles">
<a href="/articles"><img src="icons/more-button.png" /></a>
</div>
</div>
</main>
<!--Footer-->
<footer class="footer">
<p>CONNECT ON SOCIAL MEDIA</p>
<div class="social-media">
<a target="_blank" href="https://www.linkedin.com/in/maya-asmara">
<img src="icons/linkedin-icon.png"
/></a>
<a target="_blank" href="https://www.instagram.com/mayaasmara_"
><img src="icons/instagram-icon.png"
/></a>
</div>
<div class="copyright">
<p>© 2020 Maya Asmara</p>
</div>
</footer>
</body>
</html>