-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
41 lines (38 loc) · 964 Bytes
/
about.html
File metadata and controls
41 lines (38 loc) · 964 Bytes
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
<!doctype html>
<head>
<title> About Me </title>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="./assets/css/style.css">
</head>
<body>
<header>
<img id="logo" src="./assets/img/sample-logo.png" width="200px" />
<nav id="top">
<ul>
<a href="./index.html">
<li>Home</li>
</a>
<a href="./about.html">
<li>About</li>
</a>
<a href="">
<li>Contact</li>
</a>
</ul>
</nav>
</header>
<section>
<h1>About Me</h1>
<div id="article-list">
<article>
<p>Hello, my name is Antonius Wibisono</p>
<p>I'm a students, soon-to-be-web-developer/programmer</p>
<p>My hometown is Semarang</p>
<p>My hobby is reading, playing game, and coding(yeah !)</p>
</article>
</div>
</section>
<footer class="footer">
<h5>Dibuat oleh © Anton Oktober 2018 <a href="#top">|| scroll ke atas</a></h5>
</footer>
</body>