-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
45 lines (41 loc) · 1.35 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
<!DOCTYPE html>
<html>
<head>
<title>MARLON</title>
<link rel="stylesheet" type="text/css" href="css/styles.css"></link>
</head>
<body>
<!-- HEADER -->
<div class="header center">
<div class="title">
<div class="name">
<a href="./index.html">MARLON GAMEZ</a>
</div>
</div>
<div class="navcontainer">
<ul class="nav">
<li class="navitem"><a href="index.html">MUSIC</a></li>
<li class="navitem">-</li>
<li class="navitem"><a href="photos.html">PHOTOS</a></li>
<li class="navitem">-</li>
<li class="navitem current"><a href="about.html">ABOUT</a></li>
</ul>
</div>
</div>
<!-- ABOUT ME -->
<div class="center">
Hi! I’m Marlon. When I’m not playing smash or yeehawing out with friends, you can find me taking a 5 hour nap in my bunk bed!
In my free time I like to bake things and look for recipes that are minimum 5 hours long.
Catch me doing an occasional mini cross too xP
</div>
<!-- FOOTER -->
<div class="footer center">
<hr />
<div class="socials">
<a href="" class="social"><img src="img/social/facebook_logo.png"></a>
<a href="" class="social"><img src="img/social/instagram_logo.png"></a>
<a href="" class="social"><img src="img/social/linkedin_logo.png"></a>
</div>
</div>
</body>
</html>