-
Notifications
You must be signed in to change notification settings - Fork 67
/
index.html
60 lines (39 loc) · 1.12 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
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Personal blog</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Calligraffitti&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico">
</head>
<body>
<div class="home-page">
<img class="homepage-image" src="image.png" alt="">
<h1>
S.D's Work-flow
</h1>
<div class="slogan">
Coding Life
</div>
<hr>
<div class="table">
<ul>
<li class="content">
<a href="#">Blog</a>
</li>
<li> <span>|</span> </li>
<li class="content">
<a href="#">Project</a>
</li>
<li> <span>|</span> </li>
<li class="content">
<a href="#">About</a>
</li>
</ul>
</div>
</div>
</body>
</html>