Init nextjs
This commit is contained in:
parent
ba1b1d7080
commit
db76530ef4
153 changed files with 4261 additions and 868 deletions
157
todo/soon.HTML
Normal file
157
todo/soon.HTML
Normal file
|
@ -0,0 +1,157 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="57x57"
|
||||
href="favicon/apple-icon-57x57.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="60x60"
|
||||
href="favicon/apple-icon-60x60.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="72x72"
|
||||
href="favicon/apple-icon-72x72.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="76x76"
|
||||
href="favicon/apple-icon-76x76.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="114x114"
|
||||
href="favicon/apple-icon-114x114.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="120x120"
|
||||
href="favicon/apple-icon-120x120.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="144x144"
|
||||
href="favicon/apple-icon-144x144.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="152x152"
|
||||
href="favicon/apple-icon-152x152.png"
|
||||
/>
|
||||
<link
|
||||
rel="apple-touch-icon"
|
||||
sizes="180x180"
|
||||
href="favicon/apple-icon-180x180.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="192x192"
|
||||
href="favicon/android-icon-192x192.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="32x32"
|
||||
href="favicon/favicon-32x32.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="96x96"
|
||||
href="favicon/favicon-96x96.png"
|
||||
/>
|
||||
<link
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
sizes="16x16"
|
||||
href="favicon/favicon-16x16.png"
|
||||
/>
|
||||
<link rel="manifest" href="favicon/manifest.json" />
|
||||
<meta name="msapplication-TileColor" content="#ffffff" />
|
||||
<meta
|
||||
name="msapplication-TileImage"
|
||||
content="favicon/ms-icon-144x144.png"
|
||||
/>
|
||||
<meta name="theme-color" content="#ffffff" />
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="author" content="Julian Gerhardt" />
|
||||
<meta
|
||||
name="keywords"
|
||||
content="Elektrische einräder, EUC, Monowheels, Kingsong, Inmotion, Gotway"
|
||||
/>
|
||||
<title>soon</title>
|
||||
<link rel="stylesheet" href="EUC Überblick.css" />
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="navbar">
|
||||
<a href="StartENG.html">Start</a>
|
||||
<a href="EUC Überblick ENG.html#start">What are EUCs?</a>
|
||||
<a href="EUC Überblick ENG.html#why">Why EUCs?</a>
|
||||
<a href="EUC Überblick ENG.html#funktion">Functionality</a>
|
||||
<a href="EUC Überblick ENG.html#begriffe">Glossarry</a>
|
||||
<a href="EUC Überblick ENG.html#sicherheit">Safety</a>
|
||||
<a href="EUC Überblick ENG.html#ausrüstung">Gear</a>
|
||||
<a href="EUC Überblick ENG.html#cutout">Cut-out's</a>
|
||||
<a href="EUC Überblick ENG.html#akkuss">Battery safety</a>
|
||||
<a href="EUC Überblick ENG.html#fahrweise">Ride style</a>
|
||||
<a href="EUC Überblick ENG.html#wobbles">Wobbles</a>
|
||||
<a href="EUC Überblick ENG.html#leistung">Performance</a>
|
||||
<a href="EUC Überblick ENG.html#federung">Suspension</a>
|
||||
<a href="EUC Überblick ENG.html#reifen">Tires</a>
|
||||
<a href="EUC Überblick ENG.html#historie">History</a>
|
||||
<a href="HerstellerENG.HTML">Manufacturer</a>
|
||||
<a href="EUC Überblick ENG.html#geräte">Device list</a>
|
||||
<button onclick="myFunction()">Light Mode</button>
|
||||
<button onclick="window.location.href='HerstellerDE.HTML';">
|
||||
Sprache
|
||||
</button>
|
||||
<div>
|
||||
<button onclick="closeit()"><a><-Close</a></button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div id="sidenavbar">
|
||||
<a href="javascript:history.back()">Back</a>
|
||||
<a><button onclick="menü()">Menu</button></a>
|
||||
</div>
|
||||
|
||||
<!--light-mode-->
|
||||
<script>
|
||||
function myFunction() {
|
||||
var element = document.body;
|
||||
element.classList.toggle("light-mode");
|
||||
}
|
||||
</script>
|
||||
|
||||
<!--menü-->
|
||||
<script>
|
||||
function menü() {
|
||||
var element = document.body;
|
||||
element.classList.toggle("menü");
|
||||
document.getElementById("sidenavbar").style.visibility = "hidden";
|
||||
document.getElementById("navbar").style.visibility = "visible";
|
||||
}
|
||||
</script>
|
||||
|
||||
<!--closeit-->
|
||||
<script>
|
||||
function closeit() {
|
||||
var element = document.body;
|
||||
element.classList.toggle("menü");
|
||||
document.getElementById("sidenavbar").style.visibility = "visible";
|
||||
document.getElementById("navbar").style.visibility = "hidden";
|
||||
}
|
||||
</script>
|
||||
|
||||
<p style="text-align: center">This side is not available yet.</p>
|
||||
<a href="javascript:history.back()">Back</a>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue