-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 1.65 KB
/
index.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
51
52
53
54
<!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">Front end developer</h1>
</div>
</section>
<section>
<div class="inner-wrapper section-wrapper bg-color-1">
<div class="col">
<p>
I am a web developer and designer. I have been working in the
industry for over 10 years. I have a passion for creating beautiful
and functional websites that help businesses grow.
</p>
<ul style="list-style-type: none">
<li>HTML</li>
<li>CSS</li>
<li>JavaScript</li>
<li>ReactJS</li>
</ul>
</div>
<div class="col">
<img src="images/image2.png" alt="portrait" class="portrait" />
</div>
</div>
</section>
</body>
</html>