-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2025.html
46 lines (39 loc) · 1.19 KB
/
2025.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Progress Bar Example</title>
<link rel="stylesheet" href="NavBar.css">
<link rel="stylesheet" href="progressBarStyles.css">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="Bg.css">
</head>
<body>
<div class="bg"></div>
<div class="NavContainer">
<div class="Nav">
<div class="NavBoxes">
<div class="NavBox">
<a href="index.html">Home</a>
</div>
<div class="NavBox">
<a href="photoselect.html">Photography</a>
</div>
<div class="NavBox">
<a href="2025.html">2025</a>
</div>
</div>
</div>
</div>
<div class="body2">
<h1>2025 Progress Bar</h1>
<div class="progressBar">
<div class="progressBarFill" id="progressBarFill"></div>
</div>
<h1 id="yearPercent"></h1>
</div>
<p id="seconds-elapsed"></p>
<script src="progress-bar.js"></script>
</body>
</html>