-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblogn.html
More file actions
69 lines (61 loc) · 2.3 KB
/
blogn.html
File metadata and controls
69 lines (61 loc) · 2.3 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<style>
body {
margin: 0;
background-image: url('img/grassybg.gif');
}
#sidebar {
width: 250px;
height: 100%;
background-image: url('img/ATLAS6.JPG');
background-size: cover;
position: fixed;
overflow-y: auto;
}
#content {
margin-left: 250px;
padding: 16px;
color: white;
}
#sidebar a {
text-decoration: none;
color: blue;
}
.l:hover {
background-image: url('img/jgmHI70.gif');
}
</style>
</head>
<body>
<div id="sidebar">
<h1 style="color: greenyellow;">Blog Guide</h1>
<ul style="list-style-image: url('smilel.png');">
<li><a href="" class="l">Latest</a></li>
<li><a href="ong.html" class="l">Ongoing Projects</a></li>
<li><a href="ramb.html" class="l">Rambling</a></li>
</ul>
<br />
<a href="index.html"><img src="home.gif" style="margin-left: 20px;"></a>
</div>
<div id="content">
<h2>3/3/2024</h2>
<p>I decided to redo the whole website for the 4th time. I really don't know if anyone will actually look at it. If they do, at least it will be a little more interesting...</p>
<hr />
<h2>3/4/2024</h2>
<p>Looking for actual domaisn is difficult, especcialy when you don't want to pay anything... I've found somke weird free brazilian ones, but they honestly look like they'll get me put on a list</p>
<hr />
<h2>3/18/2024</h2>
<p>It's great that the site is now getting some actual traffic. If you have some some spare time you should play the pepsi game; just click on the spinning pepsi ad...</p>
<hr />
<h2>3/31/2024</h2>
<p>I went on vacation to Pensacola Florida over spring break. I managed to get some cool photo scans of a few paintings and pictures in the Naval Aviation Mueseum. I'll put one here...</p>
<a href="moonlandingscan (1).jpg"><img src="moonlandingscan.jpg" width="200px"></a>
<hr />
</div>
</body>
</html>