-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
48 lines (48 loc) · 1.23 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>
<head>
<title>My blog</title>
<link rel="stylesheet"
type="text/css"
href="styles.css">
</head>
<body>
<div id="header">
<div class="container">
<a href="index.html">My Blog</a>
<ul>
</ul>
</div>
</div>
<div id="content">
<div class="container">
<div class="about">
<div class="about-author">
<img src="me.jpg">
</div>
<h1 class="about-title">About Me</h1>
<div class="about-content">
<p>Hi there! I'm an aspiring web developer.</p>
<p>If you like my blog, please follow me on Facebook or Linkedin and tell your family and friends about it. If you want to get in touch, please click on 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://facebook.com/mattia.viotto.35">Facebook</a>
<br>
<a href="https://www.linkedin.com/in/mattia-viotto-58b147a6">Linkedin</a>
</p>
</div>
<div class="column">
<h4>My Story</h4>
<p>Hi there! I'm an aspiring web developer.</p>
</div>
</div>
</div>
</body>
</html>