-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog.html
More file actions
49 lines (39 loc) · 1.09 KB
/
blog.html
File metadata and controls
49 lines (39 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<title>blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<table id="container">
<tr>
<td id="sidebar">
<h3>links</h3>
<a href="https://github.com/3nya"> github</a> <br>
<a href="https://www.linkedin.com/in/enya-chen2/"> linkedin </a> <br>
<a href="blog.html">blog</a><br>
<!-- <a href="about.html">about</a><br> -->
</td>
<td id="content">
<h1> <a href ="index.html"> /home/enya </a> </h1>
<h3> some blogs </h3>
</td>
</tr>
</table>
<table id="container">
<tr>
<td id="content">
<h2>contents</h2>
<h3> <a href="blogs/static-site.html"> making your own static site generator with rust
- 2/19/2026 </a> </h3>
<p> this website is made with raw html/css and rust! and it was actually pretty easy to do so!
</p>
<h3> <a href="blogs/linux.html"> switching to Linux - 1/15/2026 </a> </h3>
<p> just some of my thoughts when I switched from Windows to Linux,
and maybe why you should too C:
</p>
</td>
</tr>
</table>
</body>
</html>