-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
114 lines (107 loc) · 3.24 KB
/
index.html
File metadata and controls
114 lines (107 loc) · 3.24 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Siem Animation</title>
<link rel="stylesheet" href="styles.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<header class="header">
<div class="logo">Siem</div>
<nav>
<ul class="nav-links" id="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About(NA)</a></li>
<li><a href="#">Services(NA)</a></li>
<li><a href="#footer">Contact</a></li>
</ul>
</nav>
<div class="header-right">
<button id="theme-toggle">
<img src="assets/moon.png" alt="Theme Toggle" id="theme-icon" />
</button>
<button class="menu-toggle" id="menu-toggle">☰</button>
</div>
</header>
<main class="content">
<h1>Siem Animation</h1>
<p>Switch between bright and dark mode for a better experience.</p>
</main>
<footer class="footer" id="footer">
<div>
<h5>Navigation</h5>
<ul class="footer-links">
<li><a href="#">Home</a></li>
<li><a href="#">About(NA)</a></li>
<li><a href="#">Services(NA)</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="footer-contact">
<h5>Contact</h5>
<p>Siem Animation</p>
<p><a href="mailto:[email protected]">Email us</a></p>
</div>
<div>
<h5>Other Links</h5>
<ul>
<li><a target="_blank" href="https://dlsiem.github.io">dlsiem</a></li>
<li>
<a target="_blank" href="https://www.youtube.com/@swapcharacters"
>Swap<a
target="_blank"
href="https://www.youtube.com/@swapcharacters"
>
<i
class="fa fa-youtube-play"
style="font-size: 16px; color: rgb(215, 1, 1)"
></i></a
></a>
</li>
<li><a href="#">FAQ</a></li>
<li><a href="#">Support</a></li>
</ul>
</div>
<div>
<h5>Quick Links</h5>
<ul>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Terms of Service</a></li>
<li><a href="#">Disclaimer</a></li>
</ul>
</div>
<div class="footer-social">
<a href="#">
<i class="fa fa-youtube-play" style="font-size: 24px; color: red"></i
></a>
<a href="#">
<i
class="fa fa-instagram"
style="font-size: 24px; color: rgb(216, 0, 119)"
></i
></a>
<a href="#">
<i
class="fa fa-twitter"
style="font-size: 24px; color: rgb(0, 198, 216)"
></i
></a>
<a href="#">
<i
class="fa fa-facebook"
style="font-size: 24px; color: rgb(35, 104, 255)"
></i
></a>
</div>
<div class="footer-bottom">
<p>© 2025 Siem Animation. All rights reserved.</p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>