-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
48 lines (48 loc) · 1.52 KB
/
about.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>My personal blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<div class="container">
<a id="header-title" href="index.html">My personal blog</a>
<ul id="header-nav">
<li><a href="about.html">About</a></li>
<li><a href="https://github.com/dsriedel" target="_blank">Contact</a></li>
</ul>
</div>
</div>
<div id="content">
<div class="container">
<div class="about">
<div class="about-author">
<img src="me.jpg" alt="The author" width="100px">
</div>
<h1 class="about-title">About me</h1>
<div class="about-content">
<p>Life of a generalist.</p>
</div> <!-- about-content -->
</div> <!-- about -->
</div> <!-- container -->
</div> <!-- content -->
<div id="footer">
<div class="container">
<div class="column">
<h4>My links</h4>
<p>
<a href="https://twitter.com/dsriedel" target="_blank">Twitter</a>
<br>
<a href="https://github.com/dsriedel" target="_blank">Github</a>
</p>
</div>
<div class="column">
<h4>My story</h4>
<p>Hi there! I am a retired web developer freshing up on all things programming and web development.</p>
</div>
</div>
</div>
</body>
</html>