blob: 22a873daf7b5d0dcb001a3ce1168cb53ace58307 (
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
30
|
<!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>
<h1> Links to content </h1>
<p><a href="/about">About</a></p>
<p><a href="/projects">Projects</a></p>
<p><a href="/testing">Testing</a></p>
<p><a href="/testing/pyscript">PyScript testing</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>
|