-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
Copy pathindex.html
73 lines (73 loc) · 2.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style/index.css"/>
<title>Jeremy's Portfolio</title>
</head>
<body>
<header>
<h1>Jeremy Laabs</h1>
<nav>
<button><a href="index.html">Home</a></button>
<button><a href="about.html">About</a></button>
<button><a href="contact.html">Contact</a></button>
<button><a href="projects.html">Projects</a></button>
</nav>
</header>
<section class="topsection">
<img src="https://picsum.photos/600/400" alt="">
<div class="toptext">
<h1>Jeremy Laabs</h1>
<button><a href="projects.html">My Project</a></button>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Et, quod! Temporibus consequatur alias iure facilis ad tempora unde ipsam est rem eos? Veritatis, officia? Atque ratione fuga nulla in unde.
</p>
</div>
</section>
<section>
<div class="row">
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 1"/>
<p>Portfolio 1</p>
</div>
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 2"/>
<p>Portfolio 2</p>
</div>
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 3"/>
<p>Portfolio 3</p>
</div>
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 4"/>
<p>Portfolio 4</p>
</div>
</div>
<div class="row">
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 5"/>
<p>Portfolio 5</p>
</div>
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 6"/>
<p>Portfolio 6</p>
</div>
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 7"/>
<p>Portfolio 7</p>
</div>
<div class="port-element">
<img src="https://picsum.photos/300" alt="Image of portfolio 8"/>
<p>Portfolio 8</p>
</div>
</div>
</section>
<footer>
<h1>Like What you See?</h1>
<button id="foot button"><a href="contact.html">Contact Me</a></button>
</footer>
</body>
</html>