-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
46 lines (46 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Cairo">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<title>Hi, I'm Erica's Blog</title>
</head>
<body>
<div class="container">
<div class="header">
<div class="menu">
<a class="menu-item" href="index.html">About</a>
<a class="menu-item" href="blog.html">Blog</a>
<a class="menu-item" href="https://github.com/pui">Github</a>
</div>
</div>
<div class="content">
<img class="blog-image" src="cat.jpg" />
<h2>08/20/2022 - I Made a Website for my Cat</h2>
<p>
I made a <a href="https://www.takkunismycat.com/">website for my cat</a> a little while ago. I wanted some
good geocities vibes. It <s>does not work</s> kind of works in different viewports, it barely looks good on desktop, but it's purple!
</p>
<p>
Css is easy when you use tables.
</p>
<img class="blog-image" src="hat.jpg" />
<h2>07/31/2022 - I Made a Website</h2>
<p>
So I made a website. I'm not the best at css, but I've definitely improved at it over the past year or so.
I understand css grid and flexbox! I know about google fonts!
</p>
<p>
I've generally avoided putting personal things on the internet, but I'm trying to put myself out there a little more.
So, here goes.
</p>
</div>
<div class="footer">
All content of this website is copyright © Erica Kwan 2022, unless otherwise stated.
</div>
</div>
</body>
</html>