-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 3.27 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Removed maximum-scale=1.0, user-scalable=no for accessibility -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="description" content="Clock Page: A customizable browser clock featuring dynamic backgrounds, date display, and personalization options. Choose your style and save favorite images.">
<meta name="apple-mobile-web-app-capable" content="yes"> <!-- For older iOS -->
<meta name="mobile-web-app-capable" content="yes"> <!-- Standard -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>Ambient Clock - New Architecture</title>
<!-- Google Fonts Import -->
<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=Abril+Fatface&family=Anton&family=Bangers&family=Bebas+Neue&family=Black+Ops+One&family=Cabin+Sketch:wght@700&family=Caveat&family=Corben&family=Damion&family=Dancing+Script&family=Darker+Grotesque&family=Exo:wght@400;700&family=Fredericka+the+Great&family=Fugaz+One&family=Indie+Flower&family=Libre+Baskerville&family=Lilita+One&family=Limelight&family=Lobster&family=Lora&family=Merriweather&family=Michroma&family=Montserrat&family=Noto+Serif&family=Nunito&family=Open+Sans:wght@400;700&family=Oswald&family=Pacifico&family=Permanent+Marker&family=Playfair+Display&family=Press+Start+2P&family=Prosto+One&family=Quicksand&family=Raleway&family=Roboto+Slab&family=Roboto:wght@400;700&family=Rye&family=Satisfy&family=Schoolbell&family=Shadows+Into+Light&family=Share+Tech+Mono&family=Sixtyfour&family=Special+Elite&family=Wallpoet&family=Zilla+Slab+Highlight&display=swap" rel="stylesheet">
<!-- Local Stylesheet -->
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/components/font-panel.css"> <!-- Added Font Panel CSS -->
</head>
<body>
<!-- Background Layers (for cross-fade) -->
<div id="app-background-a" class="app-background"></div>
<div id="app-background-b" class="app-background"></div>
<!-- Overlay -->
<div id="app-overlay"></div>
<!-- Elements container -->
<div id="elements-container"></div>
<!-- Controls panel -->
<div id="controls-panel"></div>
<!-- Font Panel -->
<font-panel id="font-panel-main" class="font-panel">
<h4 class="section-title">Select Font</h4>
<div class="font-panel-scroll-container"> <!-- Added scroll container -->
<div class="font-panel-content">
<!-- Font examples will be populated here -->
</div>
</div>
</font-panel>
<!-- App Title -->
<div id="app-title">
<span>Ambient Clock : </span> <!-- Added colon for separation -->
<a href="https://github.com/jcdrumm/ambientclock" target="_blank" rel="noopener noreferrer" class="github-link">
<img src="assets/icons/github-mark-white.svg" alt="GitHub Repository" class="github-icon"> <!-- Added ./ to path -->
<span>https://github.com/jcdrumm/ambientclock</span> <!-- Added URL text -->
</a>
</div>
<!-- Entry point -->
<script type="module" src="js/app.js"></script>
</body>
</html>