-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (33 loc) · 1.17 KB
/
index.html
File metadata and controls
35 lines (33 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="index.css" />
<!-- Favicon - Love and MAKEUP Logo -->
<link rel="icon" type="image/jpeg" href="https://i.imgur.com/I3Rgrvn.jpeg" />
<link rel="apple-touch-icon" href="https://i.imgur.com/I3Rgrvn.jpeg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Faced By Cynie</title>
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<div id="root"></div>
<footer>
<p>
© <span id="currentYear"></span> Faced By Cynie. All Rights
Reserved.
</p>
</footer>
<script type="module" src="/src/main.tsx">
// Update the copyright year dynamically
document.getElementById('currentYear').textContent = new Date().getFullYear();
</script>
</body>
</html>