-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (54 loc) · 2.18 KB
/
index.html
File metadata and controls
64 lines (54 loc) · 2.18 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<title>Siyang's Blog</title>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="stylesheet" href="styles/main.css" type="text/css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="hero-image">
<div class="hero-text">
<h1>Siyang's Blog</h1>
<p>A Dev Academy Exercise</p>
</div>
</div>
<div class="main">
<div class="nav-bar" id="nav">
<a class="active" href="index.html">Home</a>
<a href="blog/blog-list.html">Blog Post Archive</a>
<a href="picture-archive.html">Pictures</a>
<a href="about-me.html">About Me</a>
<a href="resources.html">Resources</a>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
</div>
<div class="content">
<h1 id="title">你好世界! (Hello World)</h1>
<h2>Hello and Welcome to my blog!</h2>
<p>This is the beginning of my website homepage where I will record my experiences at Dev Academy.</p>
<p>If you are reading this, I invite you to follow allong my journey here, through all the highs and all the challenges!</p>
<p>Below you will find the link to my latest blog post (to be updated weekly).</p>
<ul id="list">
<li><a href="blog/foundations-reflection.html">Blog Post 5: Foundations Reflection</a></li>
<li><a href="blog/learning-plan.html">Learning plan update!</a></li>
</ul>
</div>
<footer id="footer">
┻━┻︵ \(°□°\)   Made by Siyang   (╯°□°)╯︵ ┻━┻
</footer>
</div>
<script>
function myFunction() {
var x = document.getElementById("nav");
if (x.className === "nav-bar") {
x.className += " responsive";
} else {
x.className = "nav-bar";
}
}
</script>
</body>
</html>