forked from md-ash-dot/december-hackathon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathday6.html
More file actions
30 lines (30 loc) · 1.28 KB
/
day6.html
File metadata and controls
30 lines (30 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--Google fonts-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Merienda:wght@300..900&display=swap" rel="stylesheet">
<title>Day 6</title>
<link rel="stylesheet" href="assets/css/day6.css">
</head>
<body>
<a href="index.html" class="homebutton">Home</a>
<div class="container">
<h1 id="greeting">🎄 Happy Holidays, Coders! 🎅
May your loops run smoothly, your bugs be few, and your coffee be endless!
Wishing you a season of peace, joy, and flawless code.
Here’s to more successful merges and less time spent debugging in the new year! ✨</h1>
<button id="toggleButton">Catch a Coder in Action!</button>
<div class="video-container" id="videoContainer" style="display: none;">
<video id="video" controls>
<source src="assets/videos/goose.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
</div>
</div>
<script src="assets/javascript/day6.js"></script>
</body>
</html>