-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
190 lines (137 loc) · 4.39 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Articles | Tarik Alyahya</title>
<link rel="shortcut icon" href="logo240.gif" />
<meta
name="description"
content="List of all the articles of the website"
/>
<!-- fill the content attribute -->
<meta name="keywords" content="blog, articles, list" />
<meta name="viewport" content="width= device-width scale-1" />
<!-- adjust the relative links as nessecary -->
<link rel="stylesheet" type="text/css" href="styles/style.css" />
<script src="./scripts/analytic.js" defer></script>
</head>
<body>
<!--target="_blank" rel="noreferrer noopener"-->
<header id="site-top">
<a class="current" href="index.html">gumbol.github.io</a>
</header>
<!-- The site main-nav menu -->
<nav class="navigate">
<a class="current" href="blog.html">Articles</a>
<a href="projects.html">Projects</a>
<a href="about.html">About</a>
</nav>
<main>
<div id="article-list">
<header>
<h1>Articles</h1>
<hr><hr>
</header>
<a class="article-container" href="posts/b05-intro-favicon.html">
<article-summary >
<div>
<div style="float:left">
<img src="media/images/grammar-land-01-640x.jpg" loading="lazy" width="90" height="90" />
</div>
<p class="title">
Intro to Favicons
</p>
<p>A short article about favicons that covers what favicons
are, what are they used for and the recommended approach in designing one.
</p><p>Tarik Alyahya</p>
</div>
</article-summary>
</a>
<a class="article-container" href="posts/b03-ia-music-search.html">
<article-summary>
<div>
<div style="float:left">
<img src="media/images/sound-wave-01-90x.jpg" loading="lazy" width="90" height="90">
</div>
<p class="title">Find full length music on Internet Archive</p>
<p>A guide that show you how to get more full length music than sample music results.
</p>
<p>Tarik Alyahya</p>
</div>
</article-summary>
</a>
<a class="article-container" href="posts/b02-intro-web-directory.html">
<article-summary>
<div>
<div style="float:left">
<img src="media/images/files01-90x.jpg" loading="lazy" width="90" height="90">
</div>
<p class="title">
Create a robust static website directory
</p>
<p>An introduction to best approaches to designing a static web directory.</p>
<p>Tarik Alyahya</p>
</div>
</article-summary>
</a>
<a class="article-container" href="posts/b01-intro-display-screens.html">
<article-summary>
<div>
<div style="float:left">
<img src="media/images/monitor01-90x.png" loading="lazy" width="90" height="90">
</div>
<p class="title">Intro to display screens</p>
<p>An introduction on how pixels and frames work together in display screens.</p>
<p>Tarik Alyahya</p>
</div>
</article-summary>
</a>
<a class="article-container" href="posts/b04-intro-web-fonts.html">
<article-summary>
<div>
<div style="float:left">
<img src="media/images/fonts01-90x.jpg" loading="lazy" width="90" height="90">
</div>
<p class="title">
Intro to web fonts
</p>
<p>An introduction to web font families
with examples.</p>
<p>Tarik Alyahya</p>
</div>
</article-summary>
</a>
<!-- <a class="article-container" href="posts/b07-kitchen-tips.html">
<article-summary>
<div>
<div style="float:left">
<img src="media/images/cutting-board.svg" loading="lazy" width="90" height="90">
</div>
<p class="title">
Kitchen tips
</p>
<p>Answers and solutions to help you in the kitchen.
Like how to handle meat safely, and is
microwaving eggs safe?</p>
<p>Tarik Alyahya</p>
</div>
</article-summary> -->
</a>
</div>
</main>
<footer id="global">
<div>
<nav class="site-links">
<a href="blog.html">Articles</a>
<a href="projects.html">Projects</a>
</nav>
<nav class="out-links">
<a href="https://github.com/gumbol" title="GitHub" target="_blank" rel="noopener noreferrer">
<img src="media/icons/github-32x.png" alt="GitHub mascot" width="32">
</a>
</nav>
<p id="sig">© 2020 Tyah</p>
</div>
</footer>
</body>
</html>