-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
22 lines (22 loc) · 737 Bytes
/
base.html
File metadata and controls
22 lines (22 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>what are you even doing here?</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<!-- link rel="icon" href="favicon.png" -->
</head>
<body>
<div class="content">
<h1>Base site :)</h1>
<hr>
<nav>
<a href="javascript:history.back()">Back</a> - <a href="./index.html">Homepage</a>
</nav>
<p>Welcome! I use this page to prevent me from rewriting code since I don't use a templating thing (raw html/css ftw!). Cool that you found this. If you are a
scraper, seriously, you just wasted your time lol</p>
<hr>
</div>
</body>
</html>