-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 1.47 KB
/
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
<!DOCTYPE html>
<html>
<head>
<title> German Sheperd's Blog </title>
<link rel="stylesheet" href="/style/style.css">
<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=Ubuntu+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div class="index-header">
<span class="index-title"><a href="/index.html" class="index-link">German Sheperd's Blog</a></span>
<span class="index-box">
<span><a href = "/site/about.html" class="index-link">About</a></span>
<span><a href = "/site/projects.html" class="index-link">Projects</a></span>
</span>
<hr/>
</div>
<div class="content">
<a href="/site/another-hello.html" class="index-post-title">Another Hello World!</a>
<div class="index-post-date">23-01-2021</div>
<p class="index-post-desc"> My second ever post </p>
<hr><a href="/site/hello-world.html" class="index-post-title">Hello World!</a>
<div class="index-post-date">17-01-2021</div>
<p class="index-post-desc"> My first ever post </p>
<hr>
</div>
<div class="index-footer">
<a href="https://github.com/stelleron"><img src="/images/base/github-mark.svg" class="icon" width="32" height="32"></a><a href="https://www.linkedin.com/in/shreyas-donti-ab7582212"><img src="/images/base/linkedin-mark.svg" class="icon" width="32" height="32"></a>
</div>
</body>
</html>