Show sourcecode
The following files exists in this folder. Click to view.
public_html/gamla-kurser/webbutv1/projekt/venturo/pages/store/
index.html
110 lines ASCII Windows (CRLF)
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
<!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.webm" type="video/webm" />
</video>
</head>
<body>
<div class="navbar" id="navbar">
<a href="../../" 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/">Store</a>
<a href="../gallery/">Gallery</a>
<a href="../aboutus/">About us</a>
<a href="../events/">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>STORE</em></h2>
</div>
<div class="maindiv">
<h2 class="h2-alt">Coming soon...</h2>
</div>
<footer class="footer">
<p>Contact:<br><a href="mailto: lovhol23@varmdogymnasium.se">Email</a><br><a href="https://en.wikipedia.org/wiki/Pigeon_post">Pigeon Post</a></p>
<p>Address: <br>308 Negra Arroyo Lane</p>
</footer>
</body>
</html>