CyberTransfer_Website/darkvideo.html
2022-02-03 08:50:06 +00:00

45 lines
1.2 KiB
HTML

<!doctype html>
<html lang="de">
<head>
<link rel="stylesheet" type="text/css" href="darkvideo.css" />
<style>
@media screen and (max-width: 768px) {
.grid_container {
grid-template-columns: auto;
display: grid;
}
}
</style>
</head>
<body>
<div class= "grid_container">
<div class= "item1">
<div class="video-wrapper1">
<video class="vid1" playsinline autoplay muted loop poster="cake.jpg">
<source src="https://cdn.videvo.net/videvo_files/video/free/2019-07/small_watermarked/Raw_Vegan_Blueberry_Cake_Cut_Birthday_Cooking_preview.webm" type="video/webm">
Your browser does not support the video tag.
</video>
<div class="header1">
<h1>Blueberry Cheesecake</h1>
<button>Recipe here</button>
</div>
</div>
</div>
<div class="item2">
<div class="video-wrapper2">
<video class="vid2" playsinline autoplay muted loop poster="cake.jpg">
<source src="https://cdn.videvo.net/videvo_files/video/free/2019-07/small_watermarked/Raw_Vegan_Blueberry_Cake_Cut_Birthday_Cooking_preview.webm" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="header2">
<h1>Blueberry Cheesecake</h1>
<button>Recipe here</button>
</div>
</div>
</div>
</div>
</body>
</html>