blob: 79ff93c1eb1fa241ab8ea1016112d33d601e9fd9 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title> The YES's Page </title>
<meta charset="UTF-8">
<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 href="projects">Projects</a></p>
</section>
<section>
<h1> Welcome to the small HTML Page </h1>
<p> You can read why this page exists in <a href="about">About</a> section, but TL;DR page was made for fun using python and standard libraries </p>
<p> Quite an empty looking page, but everything has its beginnings </p>
</section>
</div>
<footer>
<p> Hehe <i>foot</i>er </p>
</footer>
</body>
</html>
|