-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (73 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
73 lines (73 loc) · 1.78 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
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 http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Jeffiscow Home</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav class="site-nav">
<div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="blog.html">Blog</a></li>
</ul>
</div>
</nav>
<header class="site-header">
<h1>Jeffiscow Blog</h1>
<p>Filler quick bio about blog</p>
</header>
<main>
<div class="recent-post">
<h2>Recent Blog Posts</h2>
<article>
<h3>Recent Post 1</h3>
<p>Filler text for recent post 1</p>
</article>
<article>
<h3>Recent Post 2</h3>
<p>Filler text for recent post 2</p>
</article>
<article>
<h3>Recent Post 3</h3>
<p>Filler text for recent post 3</p>
</article>
</div>
<div class="projects-container">
<h2>Projects</h2>
<div class="project">
<h3>Project 1</h3>
<p>Filler text for project 1</p>
</div>
<div class="project">
<h3>Project 2</h3>
<p>Filler text for project 2</p>
</div>
<div class="project">
<h3>Project 3</h3>
<p>Filler text for project 3</p>
</div>
</div>
<div class="Art-image-container">
<h2>Art</h2>
<ul class="image-gallery">
<li>
<img src="https://via.placeholder.com/150" alt="Art 1" />
</li>
<li>
<img src="https://via.placeholder.com/150" alt="Art 2" />
</li>
<li>
<img src="https://via.placeholder.com/150" alt="Art 3" />
</li>
</ul>
</div>
</main>
</body>
</html>