-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathold_index.html
executable file
·118 lines (67 loc) · 2.14 KB
/
old_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
<HTML>
<HEAD>
<meta charset="UTF-8">
<meta name="description" content="Personal website for my programming, computing and finance hobbies">
<meta name="keywords" content="karl, hunter, go, programming, computing, finance, personal, hobby, defiant-fg, defiant">
<meta name="author" content="Karl Hunter">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The World of Karl Hunter</title>
<style>
body {
background-color: #ACE8FF;
font-family: Helvetica;
font-size: 20px;
}
#box {
background-color: white;
border: 3px solid darkgrey;
margin: 1em;
padding: 2em;
border: 0.15em solid #6E7172;
border-radius: 25px;
min-width: 550px;
}
#titletext {
font-weight: bold;
font-size: 35px;
}
.textgrey {
color: #6E7172;
font-weight: bold;
}
.bodyheader {
font-weight: bold;
color: #100ED5;
}
.copyright {
color: darkgrey;
padding-top: 0.1em;
font-size: 15px;
}
</style>
</HEAD>
<BODY>
<div id = "box">
<p id = "titletext">Welcome to the World of <span class = "textgrey">Karl Hunter</span></p>
<img src="img/karl_web_penguin.JPG" alt="Penguin Floating on water" width="533" height="226">
<p id = "middletext">
<span class = "bodyheader">Projects</span>
<ul>
<li><a href = "defiant/index.html" title = "visit dedicated manual site">DEFIANT-FG</a> - Linux command line file monitoring tool</li>
<li><a href = "Projects/ArchiveGuardian.html" title = "Visit AG dedicated site">ArchiveGuardian</a> - Light-weight python script to hash file</li>
<li><a href = "Projects/ZFS_Snapper.html" title = "Visit my dedicated ZFS snapper page">ZFS Snapper</a> - an automatic snapshot script written in shell</li>
</ul>
<span class = "bodyheader">Journal</span><br><br>
<a href = "Home.html" title = "Journal entries">Click here</a> to read my blog posts.
<br>
<br>
<span class = "bodyheader">Me on the web</span>
<ul>
<li><a href = "https://github.com/karlh001" title = "Visit my GitHub">GitHub</a></li>
</ul>
</p>
<br>
<p class = "copyright">© Karl Hunter 2023</p>
</div>
</BODY>
</HTML>