-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
35 lines (33 loc) · 812 Bytes
/
Copy pathabout.html
File metadata and controls
35 lines (33 loc) · 812 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>:P</title>
<link rel="stylesheet" href="nav.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="navbar">
<a class="logo" href="#logo">Logo</a>
<a href="index.html">Home</a>
<a class="active" href="#about">About</a>
<a href="projects.html">Projects</a>
<a href="contact.html">Contact</a>
</div>
<main>
<article>
<div class="greet">
<p>write something</p>
</div>
</article>
</main>
<footer>
<p>© 2026 inspo website</p>
<div id="foot">
<p>
this is a footer
</p>
<a href="https://github.com/Jason-CJS">Github</a>
</div>
</footer>
</body>
</html>