This repository has been archived on 2021-06-21. You can view files and clone it, but cannot push or open issues or pull requests.
public_html/nav.html

33 lines
926 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Navigation</title>
<base target="_parent">
<style>
a.navi {
padding:0px 48px;
font-size:32px;
outline:0;
color:#ffffff
}
a.navi:hover {background-color:orange!important;}
nav {
text-align:center;
background-color:#cc0000;
color:#ffffff;
}
iframe{border:none;}
</style>
</head>
<body>
<nav>
<a class="navi" rel="top" href="/~job/">Home</a>
<a class="navi" href="/~job/writings">Writings</a>
<a class="navi" href="/~job/wheretofindme.html">Where to find me</a>
<a class="navi" href="/~job/contact.html">Contact</a>
</nav>
<p style="text-align:center;"><a style="font-size:10px;color:#000" href="/~job/writings/darkmode.html">Do you know that you can toggle dark mode on this website?</a></p>
</body>
</html>