-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
50 lines (50 loc) · 1.84 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
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personal Website Project</title>
<link rel="stylesheet" href="styles/styles.css" />
<script src="js/index.js"></script>
</head>
<body>
<header class="wrapper">
<div class="inner-wrapper header-section site-nav">
<div class="site-title">DJM Websites</div>
<div class="menu-wrapper">
<nav>
<ul class="menu-wrapper">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
</div>
</div>
</header>
<section>
<div class="inner-wrapper section-wrapper bg-color-1"" style="margin: 1rem auto 1rem auto">
<h1 class="page-title">About</h1>
</div>
</section>
<section class="flex-col">
<div class="inner-wrapper section-wrapper bg-color-1"">
<div class="flex-col col-50">
<h2 class="section-title">Daren J Morreale</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. Excepteur sint occaecat cupidatat non proident, sunt in
culpa qui officia deserunt mollit anim id est laborum.
</p>
</div>
<div class="col-50">
<img class="portrait" src="images/darenJM.png" alt="Website" />
</div>
</div>
</section>
</body>
</html>