-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (46 loc) · 1.49 KB
/
Copy pathindex.html
File metadata and controls
55 lines (46 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Static Site with GIF Background</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Fullscreen GIF background -->
<img id="gif-bg" src="background.gif" alt="GIF Background">
<div class="content">
<header>
<h1>Static Page with GIF Background</h1>
</header>
<main>
<section>
<h2>About the App</h2>
<p>This is a static representation of the interactive app hosted on 777joyce.streamlit.app. This version includes a cool GIF background and some CSS styling.</p>
</section>
<section>
<h2>Features</h2>
<ul>
<li>Interactive design (with GIF background)</li>
<li>Responsive layout</li>
<li>Enhanced visual experience</li>
</ul>
</section>
<section>
<h2>Media Player with Transparent Background</h2>
<p>This static version includes media elements to make the design more engaging while keeping it lightweight.</p>
<!-- Video Player with transparent background -->
<div class="media-player">
<video controls>
<source src="video.mp4" type="video/mp4">
Your browser does not support the video player.
</video>
</div>
</section>
</main>
<footer>
<p>© 2024 - Static version of 777Joyce</p>
</footer>
</div>
</body>
</html>