Show sourcecode
The following files exists in this folder. Click to view.
public_html/gamla-kurser/webbutv1/projekt/backup/MemoRing/pages/
0template.html
aboutus/
events/
gallery/
store/
0template.html
79 lines ASCII Windows (CRLF)
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>VENTURO</title>
<link rel="icon" href="../bilder/logo2.png">
<link rel="stylesheet" href="../css/css_index.css" />
<video id="background-video" autoplay loop muted poster="../bilder/central-park.png">
<source src="../videos/central-park.mp4" type="video/mp4">
</video>
</head>
<body>
<div class="navbar" id="navbar">
<a href="../index.html" title="Home Page" class="navbar-logo"><img src="../bilder/logo2.png" alt="Logo">
<h1 class="navbar-title">VENTURO</h1>
</a>
<div class="navbar-tabs">
<a href="./store.html">Store</a>
<a href="./gallery.html">Gallery</a>
<a href="./aboutus.html">About us</a>
<a href="./events.html">Events</a>
</div>
<div class="dark-light-pos">
<script src="../js/dark-light.js"></script>
<link rel="stylesheet" href="../css/dark-light.css">
<button class="theme-toggle" id="theme-toggle" title="Toggle light mode" aria-label="auto"
aria-live="polite">
<svg class="sun-and-moon" aria-hidden="true" width="24" height="24" viewBox="0 0 24 24">
<mask class="moon" id="moon-mask">
<rect x="0" y="0" width="100%" height="100%" fill="white" />
<circle cx="24" cy="10" r="6" fill="black" />
</mask>
<circle class="sun" cx="12" cy="12" r="6" mask="url(#moon-mask)" fill="currentColor" />
<g class="sun-beams" stroke="currentColor">
<line x1="12" y1="1" x2="12" y2="3" />
<line x1="12" y1="21" x2="12" y2="23" />
<line x1="4.22" y1="4.22" x2="5.64" y2="5.64" />
<line x1="18.36" y1="18.36" x2="19.78" y2="19.78" />
<line x1="1" y1="12" x2="3" y2="12" />
<line x1="21" y1="12" x2="23" y2="12" />
<line x1="4.22" y1="19.78" x2="5.64" y2="18.36" />
<line x1="18.36" y1="5.64" x2="19.78" y2="4.22" />
</g>
</svg>
</button>
</div>
</div>
<script>
window.onscroll = function () { scrollFunction() };
function scrollFunction() {
var navbar = document.getElementById("navbar");
if (document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) {
navbar.classList.add("shrink");
} else {
navbar.classList.remove("shrink");
}
}
</script>
<script>
function myFunction() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
<div>
<br><br><br><br><br><br><br>
</div>
<div>
<h2 class="page-title"><em>TITLE</em></h2>
</div>
<div class="maindiv">
</div>
</body>
</html>