forked from AnujShrivastava01/AnimateItNow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
185 lines (167 loc) · 6.92 KB
/
Copy pathindex.html
File metadata and controls
185 lines (167 loc) · 6.92 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>AnimateItNow</title>
<!-- styles & icons -->
<link rel="stylesheet" href="styles.css" />
<link rel="icon" type="image/png" href="images/logo.png" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css">
</head>
<body>
<!-- ───────── NAVBAR ───────── -->
<nav class="navbar scroll-fade">
<div class="nav-left">
<img src="images/logo.png" alt="AnimateItNow Logo" class="logo" />
<span class="site-name">Animate It Now</span>
</div>
<div class="nav-right">
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="templates.html">Templates</a></li>
<li><a href="contributors.html">Contributors</a></li>
<li><a href="contact.html">Contact</a></li>
<li>
<a href="https://github.com/itsAnimation/AnimateItNow"
target="_blank" rel="noopener noreferrer" aria-label="GitHub Repo"
class="github-icon">
<svg viewBox="0 0 16 16" width="24" height="24" fill="currentColor">
<path d="M8 0C3.58 0 0 3.58 0 8a8 8 0 005.47 7.59c..."></path>
</svg>
</a>
</li>
<li><button id="theme-toggle" aria-label="Toggle dark/light mode">🌙</button></li>
</ul>
</div>
</nav>
<!-- ───────── HERO ───────── -->
<header class="landing-section">
<h1 class="fade-in">Welcome to AnimateItNow</h1>
<h2 class="fade-in delay-1">
A creative space where contributors build beautiful web components.
</h2>
<p class="fade-in delay-2">
This project is a collaborative, open-source platform for sharing and
discovering stunning web UI components. Join us to contribute, learn,
and inspire others!
</p>
<a href="#faq" class="cta-btn bounce">Get Started</a>
</header>
<!-- ───────── MAIN ───────── -->
<main>
<!-- ─────── OUR SINGLE STATIC FAQ ─────── -->
<section id="faq" class="faq-section info-section scroll-fade">
<div class="faq-container">
<h2 class="faq-title">Frequently Asked Questions</h2>
<p class="faq-subtitle">Everything you need to know about AnimateItNow</p>
<div class="faq-list">
<!-- 01 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>What is this project?</h3>
<div class="faq-icon-static"><i class="fas fa-question"></i></div>
</div>
<div class="faq-answer-content">
<p>AnimateItNow is a community-driven hub of reusable web components and templates.</p>
</div>
</div>
<!-- 02 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>How to contribute?</h3>
<div class="faq-icon-static"><i class="fas fa-code-branch"></i></div>
</div>
<div class="faq-answer-content">
<p>Fork the repo, add your component, then open a pull request. All skill levels are welcome.</p>
</div>
</div>
<!-- 03 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>Why open source?</h3>
<div class="faq-icon-static"><i class="fas fa-users"></i></div>
</div>
<div class="faq-answer-content">
<p>Open source accelerates learning, sharing and building great software together.</p>
</div>
</div>
<!-- 04 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>HTML Basics</h3>
<div class="faq-icon-static"><i class="fas fa-code"></i></div>
</div>
<div class="faq-answer-content">
<p>Master semantic HTML to create accessible, well-structured web pages.</p>
</div>
</div>
<!-- 05 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>CSS Styling</h3>
<div class="faq-icon-static"><i class="fas fa-paint-brush"></i></div>
</div>
<div class="faq-answer-content">
<p>Use modern CSS to craft responsive layouts and beautiful visual effects.</p>
</div>
</div>
<!-- 06 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>JavaScript Logic</h3>
<div class="faq-icon-static"><i class="fas fa-microchip"></i></div>
</div>
<div class="faq-answer-content">
<p>Add interactivity with efficient, modern JavaScript.</p>
</div>
</div>
<!-- 07 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>Animations</h3>
<div class="faq-icon-static"><i class="fas fa-wave-square"></i></div>
</div>
<div class="faq-answer-content">
<p>Create smooth, engaging animations that delight users.</p>
</div>
</div>
<!-- 08 -->
<div class="faq-item glow-wrap">
<div class="faq-question-header">
<h3>Open Source Contributors</h3>
<div class="faq-icon-static"><i class="fas fa-heart"></i></div>
</div>
<div class="faq-answer-content">
<p>Join our friendly community and collaborate on exciting web-dev projects.</p>
</div>
</div>
</div><!-- /faq-list -->
</div><!-- /faq-container -->
</section>
</main>
<!-- ───────── FOOTER ───────── -->
<footer class="footer scroll-fade">
<div class="footer-content">
<div class="footer-left">
<h2>AnimateItNow</h2>
<p>Creating impactful web animations and templates for everyone.</p>
</div>
<div class="footer-right">
<h4>Connect With Us</h4>
<ul>
<li><a href="https://github.com/itsAnimation/AnimateItNow" target="_blank"><i class="fab fa-github fa-beat"></i> GitHub</a></li>
<li><a href="https://www.linkedin.com/in/anujshrivastava1/" target="_blank"><i class="fab fa-linkedin fa-beat"></i> LinkedIn</a></li>
<li><a href="mailto:contact@animateitnow.com"><i class="fas fa-envelope"></i> Email Us</a></li>
</ul>
</div>
</div>
<div class="footer-bottom">
<p>© 2025 AnimateItNow. Made with ❤️ by <span class="highlight">Anuj</span> and Contributors.</p>
</div>
</footer>
<div id="cursor-snake"></div>
<script src="script.js"></script>
</body>
</html>