-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutme.html
More file actions
35 lines (33 loc) · 1.33 KB
/
aboutme.html
File metadata and controls
35 lines (33 loc) · 1.33 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About me</title>
<link rel="stylesheet" href="css/style.mobile.css">
</head>
<body>
<div id="aboutme">
<nav class="navigation">
<a href="#" class="menu-icon"></a>
<div class="menu-wrapper">
<ul class="mobile">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="contacts.html">Contact</a></li>
</ul>
</div>
</nav>
<article class="aboutme-content clearfix">
<div class="aboutme-content-img">
<img src="img/jason_wood.jpg" alt="JWood picture">
</div>
<div class="aboutme-content-text">
<h2>About me</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
<p><span class="aboutme-content-text-sign">Jason Wood</span></p>
</div>
</article>
</div>
</body>
</html>