-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (39 loc) · 991 Bytes
/
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Palaster</title>
<link rel="stylesheet" type="text/css" href="css/main.css" />
</head>
<body>
<div id="outer_div">
<header id="main_header">
<h1>Palaster</h1>
</header>
<nav id="main_nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="certificates.html">Certificates</a></li>
<li><a href="about.html">About</a></li>
<li>Contact</li>
</ul>
</nav>
<section id="main_section">
<article>
<header>
Welcome
</header>
<p>Hello and welcome to my project's site. The projects here involve software and hardware, but I will put anything else that I am doing here.</p>
<footer>
- Palaster
</footer>
</article>
</section>
<footer id="main_footer">
Copyright Palaster 2020
</footer>
</div>
</body>
</html>