-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
62 lines (57 loc) · 2.52 KB
/
test.html
File metadata and controls
62 lines (57 loc) · 2.52 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css"> <!-- Your custom CSS file -->
<title>Caden's Observations</title>
</head>
<body>
<div class="overlay-container overlay-text" id="dynamicText">
<div>Caden Clements' ASTONOMICAL Observations</div>
</div>
<!-- Carousel -->
<div id="carouselExampleIndicators" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleIndicators" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleIndicators" data-slide-to="1"></li>
<!-- Add more li elements for additional images -->
</ol>
<div class="carousel-inner">
<div class="carousel-item active">
<div class="d-block w-100" style="background-image: url('/images/sample1.png'); height: 400px;"></div>
</div>
<div class="carousel-item">
<div class="d-block w-100" style="background-image: url('/images/sample2.png'); height: 400px;"></div>
</div>
<!-- Add more carousel-item divs for additional images -->
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<!-- Your existing content -->
<div class="entry">
<!-- Content here -->
</div>
<!-- Bootstrap JS and dependencies -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script>
function drawStars(){
// Your existing star drawing function
}
window.onload = function() {
drawStars();
window.scrollTo(0, 0);
};
</script>
</body>
</html>