-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (46 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="icon" href="PogChamp.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rooster's Site</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="banner">
<img src="logo.jpg" alt="Logo" class="logo">
<div class="banner-text">
<h1> Website, Version 0.001 </h1>
</div>
</div>
<div class="container">
<nav class="sidebar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Yes</a></li>
</ul>
</nav>
<main class="content">
<header>
<h1>Behold!</h1>
</header>
<article class="blog-entry">
<h2>A Website!</h2>
<p>Date: October 11, 2023</p>
<p>A Simple, but stylish website, created by yours truly. New features and pages will be added the more I learn.</p>
</article>
<article class="blog-entry">
<h2>Title.</h2>
<p>Date: Jan 3, 2024</p>
<p>This is an update! </p>
</article>
</main>
<div class="flag">
<h3>This website is a work in progress! Not representative of final product!</h3>
</div>
</div>
</body>
</html>