-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
executable file
·36 lines (32 loc) · 1.37 KB
/
about.html
File metadata and controls
executable file
·36 lines (32 loc) · 1.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<title>TheCodec's Blog</title>
<link rel="icon" type="image/x-icon" href="icons/planet-icon.png">
</head>
<body>
<header>
<nav>
<a href="https://thecodecofficial.github.io/Blog/">Home</a>
<a href="">About</a>
</nav>
</header>
<main style="display: flex; flex-direction: column; align-items: center;">
<h1>About Me</h1>
<p style="width: 50%;">Hi, I'm TheCodec, a CS student at ETH Zurich. This is my personal blog where I post about
various
projects in the field of computer science. If you have a particular question you can contact me via mail at
<b>trutsch@student.ethz.ch</b> or via discord at <b>TheCodec#2261</b>.
</p>
<a href="https://github.com/TheCodecOfficial"><img src="icons/github-mark-white.svg"
style="width:25px; height:25px;"></a>
</main>
</body>
</html>