forked from AnujShrivastava01/AnimateItNow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
119 lines (112 loc) · 4.3 KB
/
Copy pathabout.html
File metadata and controls
119 lines (112 loc) · 4.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About | AnimateItNow</title>
<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>
<nav class="navbar">
<div class="nav-left">
<img src="images/logo.png" alt="AnimateItNow Logo" class="logo" />
<span class="site-name">AnimateItNow</span>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="about.html" class="active">About</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>
<button id="theme-toggle" aria-label="Toggle dark/light mode">🌙</button>
</li>
</ul>
</nav>
<main class="about-main">
<section class="about-header fade-in">
<h1 class="about-title">About <span>AnimateItNow</span></h1>
<p class="about-subtitle">A creative platform for beautiful web animations</p>
</section>
<section class="about-section scroll-fade">
<div class="about-icon">🎯</div>
<div class="about-content">
<h2>Our Mission</h2>
<p>
We provide easy-to-use animation templates for web developers of all skill levels to make their projects more interactive and engaging.
<br /><br />
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>
</div>
</section>
<section class="about-section scroll-fade">
<div class="about-icon">💻</div>
<div class="about-content">
<h2>Technologies</h2>
<div class="about-tech-list">
<div class="about-tech-item">
<span>HTML5</span>
</div>
<div class="about-tech-item">
<span>CSS3</span>
</div>
<div class="about-tech-item">
<span>JavaScript</span>
</div>
<div class="about-tech-item">
<span>Git</span>
</div>
</div>
</div>
</section>
<section class="about-section scroll-fade">
<div class="about-icon">@</div>
<div class="about-content">
<h2>For Everyone</h2>
<div class="about-audience">
<div class="about-audience-item">
<h3>Beginners</h3>
<p>Learn with simple, well-documented examples</p>
</div>
<div class="about-audience-item">
<h3>Developers</h3>
<p>Production-ready components to save time</p>
</div>
<div class="about-audience-item">
<h3>Designers</h3>
<p>Inspiration for your next project</p>
</div>
</div>
</div>
</section>
<section class="about-cta scale-in">
<h2>Ready to contribute?</h2>
<p>Join our open-source community!</p>
<a href="https://github.com/itsAnimation/AnimateItNow/" target="_blank" class="about-button pulse">View on GitHub</a>
</section>
</main>
<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" rel="noopener noreferrer"><i class="fab fa-github fa-beat"></i> GitHub</a></li>
<li><a href="https://www.linkedin.com/in/anujshrivastava1/" target="_blank" rel="noopener noreferrer"><i class="fab fa-linkedin fa-beat"></i> LinkedIn</a></li>
<li><a href="mailto:contact@animateitnow.com" rel="noopener noreferrer"><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>