blob: 65a72c9cf79e61a3f40875f090d4e615b21b08da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<html lang="en">
<head>
<title> The YES's Page </title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<div style="margin: auto; width: fit-content;"> <b> Welcome To The Mighty HTML Page </b> </div>
</header>
<div id="section-div">
<section style="padding-top: 10px">
<h1> Links to content </h1>
<p><a href="about">About</a></p>
<p><a href="test">Testing</a></p>
<p><a>Projects <i>[WIP]</i></a></p>
</section>
</div>
<footer>
<p> Hehe <i>foot</i>er </p>
</footer>
</body>
</html>
|