-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (48 loc) · 1.69 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>
<head>
<title>My blog</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div id="header">
<div class="container">
<a id="header-title" href="index.html"><strong>My Blog</strong></a>
<ul id="header-nav">
<li><a href="about.html">About</a></li>
<li><a href="mailto:[email protected]">Contact</a></li>
</ul>
</div>
</div>
<div id="content">
<div class="container">
<div class="about">
<div class="about-author">
<img src="me1.png">
</div>
<h1 class"about-title">About Me</h1>
<div class="about-content">
<p>Oh, hi! I didn't see you there! I am an aspiring web developer.</p>
<p>I love computers, puzzles, and a good scavenger hunt. These activities are perfectly compatible with web develpment. If you like my blog, please follow me on <a href="https://twitter.com/shancoo?lang=en">Twitter</a> and tell your family and friends about it. If you want to get in touch, please click <a href="mailto:[email protected]">here</a> or the contact link in the navigation bar.</p>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="container">
<div class="column">
<h4>My Links</h4>
<p>
<a href="https://twitter.com/shancoo?lang=en">Twitter</a>
<br>
<p>
<a href="https://www.linkedin.com/in/shannoncook7578795353/">LinkedIn</a>
</div>
<div class="column">
<h4>My Story</h4>
<p><em>I'm an aspiring web developer.</em></p>
</h4>
</div>
</div>
</div>
</body>
</html>