-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
141 lines (111 loc) · 3.13 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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
<!DOCTYPE html>
<html>
<head>
<title>Blog</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
</head>
<body>
<style>
body {
background-color: black;
color: white;
font: 1em/1.5 monospace;
}
.top{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.header{
display: flex;
justify-content: space-between;
width: 90%;
}
.header a {
color: white;
}
.menu_top{
display: flex;
width: 80%;
justify-content: space-evenly;
}
.menu_top p{
font-size: 150%;
}
.separator{
width: 90%;
border: solid 1px white;
}
a{
color:white
}
.blog{
width: 90%;
font-size: 150%;
}
ul.no-bullets {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
margin: 0; /* Remove margins */
}
.compartment{
display:flex;
gap: 10%;
justify-content: center;
align-items: center;
}
.ref-link{
display: flex;
width: 10%;
align-items: center;
justify-content: space-evenly;
margin-right: 7.5%;
}
.icon{
text-decoration: none;
font-size: 150%;
}
</style>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<div class="top">
<div class="header">
<div class="menu_top">
<p>[<a href="index.html">home</a>]</p>
<p>[<a href="blog.html">blog</a>]</p>
<p>[<a href="project.html">project</a>]</p>
<p>[<a href="experience.html">experience</a>]</p>
<p>[<a href="about.html">about</a>]</p>
</div>
<div class="ref-link">
<a href="https://www.linkedin.com/in/hilariusjeremy/" class="icon">
<i class="fa-brands fa-linkedin"></i>
</a>
<a href="https://github.com/HilariusJeremy" class="icon">
<i class="fa-brands fa-github"></i>
</a>
</div>
</div>
<div class="separator"></div>
<div class="blog">
<div class="compartment">
<div class="date">
<h1>Date</h1>
<ul class="no-bullets">
<li>
August 28, 2024
</li>
</ul>
</div>
<div class="title">
<h1>Title</h1>
<ul class="no-bullets">
<li>
<a href="aug-28.html">The Starting Point</a>
</li>
</ul>
</div>
</div>
</div>
</body>
</html>