-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (53 loc) · 2 KB
/
index.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TraxDinosaur YT Video Tracker</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="https://i.ibb.co/870d9Xr/Untitled.png" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>TraxDinosaur - YouTube Video Tracker</h1>
</header>
<main>
<section class="video-update">
<h2>Upcoming Video: <span id="video-title">Title Goes Here</span></h2>
<div class="progress-container">
<div class="progress-step" id="step1">
<div class="step-icon">📝</div>
<p>Planning</p>
</div>
<div class="progress-step" id="step2">
<div class="step-icon">✍️</div>
<p>Scripting</p>
</div>
<div class="progress-step" id="step3">
<div class="step-icon">🎥</div>
<p>Shooting</p>
</div>
<div class="progress-step" id="step4">
<div class="step-icon">✂️</div>
<p>Editing</p>
</div>
<div class="progress-step" id="step5">
<div class="step-icon">🔍</div>
<p>Review</p>
</div>
<div class="progress-step" id="step6">
<div class="step-icon">📅</div>
<p>Publishing: <span id="publish-date">TBD</span></p>
</div>
</div>
<p class="note">Note: Some videos may be published without appearing in this tracker.</p>
</section>
</main>
<footer>
© 2024 Traxdinosaur
</footer>
<script src="script.js"></script>
</body>
</html>