-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout-me.html
More file actions
64 lines (52 loc) · 2.02 KB
/
about-me.html
File metadata and controls
64 lines (52 loc) · 2.02 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 href="styles/main.css" rel="stylesheet" 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 href="index.html">Home</a>
<a href="blog/blog-list.html">Blog Post Archive</a>
<a href="picture-archive.html">Pictures</a>
<a class="active" 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">About me</h1>
<h2 id="center">Hi, my name is Siyang and im studying at Dev Academy!</h2>
<img id="me-image" src="images/me.jpeg" alt="my picture">
<p id="center">
I love technollogy and discussing exciting up and coming advances, music is an important part of my life and I enjoy listening to most genres, but especailly enjoy playing the piano. In my spare time I like to game, my current favourite game is Monster
Hunter!
</p>
</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>