Wobbly-Website/downloads.html
2023-07-30 18:32:42 +02:00

58 lines
1.5 KiB
HTML

<!DOCTYPE html>
<html lang="de"><meta charset="utf-8">
<head>
<title>Downloads</title>
<link rel="icon" sizes="192x192" href="profilbild-workbench.png">
<link rel="stylesheet" href="styles.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script type="text/javascript" src="script.js"></script>
</head>
<body style="background-color: #2e2e2e;">
<div class="background" id="background">
<div style="font-family:ubuntu;" class="topnav">
<a class="topnav-inactive" href="https://i21k.de/emil" title="EKNr1 Startseite">Startseite</a>
<a class="topnav-inactive" href="ueber-mich.html" title="Über mich">Über mich</a>
<a class="topnav-active" href="downloads.html" title="Downloads">Downloads</a>
<a class="topnav-inactive" href="bla" title="Text!">Bla</a>
</div>
<p class="big-text center-text">Downloads</p>
<br>
<br>
<a href="pythonscripts.html" class="normal-link-button" title='Skripte in der Programmiersprache "Python".'>
Pythonskripte
</a>
<a href="merge-box" class="normal-link-button" title="Ein 2D Videospiel">
Merge Box
</a>
<br>
<br>
</div>
<script type="text/javascript">
getStringOfPageContent("backgrounds", function(pageContent) {
let backgrounds = getFilesInFolder(pageContent);
randomBackground(backgrounds)
});
</script>
</body>
</html>