blob: 41810e31a1185faf6052af1d778a000afcaa7dc3 (
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<title> The YES's Page </title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header> <b> About The Mighty HTML Page </b> </header>
<div id="section-div">
<section>
<h1> Why does this exist? </h1>
<p> This page exists because I wanted to: </p>
<ul>
<li> First - learn how to write own simple HTTP server using python and standard libs </li>
<li> Second - finally create a page for myself, where I can share my projects without filesize limit and such </li>
<li> Third - I am interested on how safe my code and my safety practices are, so try to hack the page, and report on how you did it </li>
</ul>
</section>
</div>
<footer>
<p> I have no clue what to put in a footer </p>
</footer>
</body>
</html>
|