-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
123 lines (93 loc) · 2.96 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">
<title>Jonas Svedas</title>
<link rel="shortcut icon" href="/static/images/favicon.ico">
<link rel="stylesheet" href="/static/css/style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-148910411-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-148910411-1');
</script>
</head>
<body>
<!-- Header contains logo and navigation elements -->
<div class = "flex-col top-container">
<div class = "flex-row top-nav">
<div class = "nav no-a-decor">
<ul>
<li><a>EN</a></li>
</ul>
</div>
</div>
<div class = "flex-row top-border bottom-border">
<div id = "logo">
<h1>JONAS SVEDAS</h1>
</div>
<div class = "nav no-a-decor">
<ul>
<li><a href="/index.html">ARTICLES</a></li>
<li><a href="/about.html">ABOUT</a></li>
</ul>
</div>
</div>
<div class = "page-content">
<div class = "flex-col">
<table class="no-a-decor">
<!-- <tr>
<td height = 30px valign=top width="90%">
<a> Next article. </a>
</td>
<td> 2021-xx-xx </td>
</tr> <tr>
<td height = 30px valign=top width="90%">
<a> Next article. </a>
</td>
<td> 2021-xx-xx </td>
</tr> <tr>
<td height = 30px valign=top width="90%">
<a> Next article. </a>
</td>
<td> 2021-xx-xx </td>
</tr>
<tr>
<td height = 30px valign=top width="90%">
<a href=/articles/css-tips/css-tips.html>
CSS Tips </a>
</td>
<td> 2021-07-11 </td>
</tr> !-->
<tr>
<td height = 30px valign=top width="80%">
<a href=/articles/firefox-autofill/firefox-autofill.html>
How to enable Firefox form autofill outside the US</a>
</td>
<td style="text-align: right;"> 2021-10-22 </td>
</tr>
<tr>
<td height = 30px valign=top width="80%">
<a href="/articles/mac-os-apps-for-ex-windows-users/mac-os-apps-for-ex-windows-users.html">
macOS apps for ex-Windows users</a>
</td>
<td style="text-align: right;"> 2020-05-24 </td>
</tr>
<tr>
<td height = 30px valign=top width="80%">
<a href=/articles/glory-to-rome/glory-to-rome.html>
How I got my copy of Glory to Rome</a>
</td>
<td style="text-align: right;"> 2016-06-28 </td>
</tr>
</table>
</div>
</div>
<div class = "footer top-border">
Jonas Švedas | 2021
</div>
</div>
</body>
</html>