-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (85 loc) · 2.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Media Queries Project</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#" class="home-option">Home</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Technologies</a></li>
<li><a href="#">Contact</a></li>
</ul>
<div>
<img src="assets/hambrger.png" alt="menu">
</div>
</nav>
<section class="intro">
<div class="intro-left">
<div class="intro-line-1">
<img src="assets/waving-hand.png" alt="hello">
<h3>Hi Everyone</h3>
</div>
<div class="intro-line-2">
<h1>
Mark Anderson
</h1>
<h2>
Developer
</h2>
</div>
</div>
<div class="intro-right">
<img src="assets/pc-image.png" alt="pc-image">
</div>
</section>
</header>
<main>
<section class="projects">
<div>
<h1>Projects</h1>
<div class="horizontal-divider"></div>
</div>
<div class="project-list">
<div class="project">
<img src="assets/image.png" alt="project-image">
<p>Project 1</p>
</div>
<div class="project">
<img src="assets/image.png" alt="project-image">
<p>Project 2</p>
</div>
<div class="project">
<img src="assets/image.png" alt="project-image">
<p>Project 3</p>
</div>
<div class="project">
<img src="assets/image.png" alt="project-image">
<p>Project 4</p>
</div>
</div>
</section>
</main>
<footer>
<section class="contact">
<div>
<h1>
Contact Me
</h1>
<div class="horizontal-divider-contact"></div>
</div>
<div class="socials">
<img src="assets/github.png" alt="social">
<img src="assets/linkedin.png" alt="social">
<img src="assets/outlook.png" alt="social">
</div>
</section>
</footer>
</body>
</html>