forked from pavitraag/Project-Vault
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
218 lines (198 loc) · 8.77 KB
/
Copy pathindex.html
File metadata and controls
218 lines (198 loc) · 8.77 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Project Vault</title>
<link rel="icon" href="assets/favicon_project-vault.png" type="image/png" />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<!-- Mobile Menu -->
<div class="mobile-menu" id="mobileMenu">
<div class="mobile-menu-header">
<div class="nav-logo">Project Vault</div>
<div class="mobile-menu-close" id="mobileMenuClose">×</div>
</div>
<div class="mobile-menu-items">
<a href="./index.html" class="mobile-menu-link"><i class="fa-solid fa-house"></i> Home</a>
<a href="./assets/html_files/aboutus.html" class="mobile-menu-link"><i class="fa-solid fa-circle-info"></i> About Us</a>
<div class="mobile-submenu">
<div class="mobile-menu-link submenu-toggle">
<i class="fa-solid fa-icons"></i> Components <i class="fa-solid fa-chevron-down arrow-icon"></i>
</div>
<div class="submenu-items">
<a href="./assets/html_files/website.html" class="mobile-menu-link">Webfolio</a>
<a href="./assets/html_files/games.html" class="mobile-menu-link">Games</a>
<a href="./assets/html_files/ml.html" class="mobile-menu-link">ML Projects</a>
</div>
</div>
<a href="./faq.html" class="mobile-menu-link"><i class="fa-solid fa-question-circle"></i> FAQ</a>
<a href="./assets/html_files/contact.html" class="mobile-menu-link"><i class="fa-solid fa-phone"></i> Contact Us</a>
</div>
</div>
<!-- Desktop Navigation -->
<nav>
<div class="nav-container">
<div class="nav-logo">Project Vault</div>
<div class="mobile-menu-toggle" id="mobileMenuToggle">
<span></span>
<span></span>
<span></span>
</div>
<div class="nav-right">
<a href="./index.html" class="nav-link"><i class="fa-solid fa-house"></i> Home</a>
<a href="./assets/html_files/aboutus.html" class="nav-link"><i class="fa-solid fa-circle-info"></i> About Us</a>
<div class="dropdown">
<div class="dropdown-toggle nav-link">
<i class="fa-solid fa-icons"></i> Components ▾
</div>
<div class="dropdown-toggle nav-link"><<i class="fa-solid fa-icons"></i> Components ▾</div>
<div class="dropdown-content">
<a href="./assets/html_files/website.html">Webfolio</a>
<a href="./assets/html_files/games.html">Games</a>
<a href="./assets/html_files/ml.html">ML Projects</a>
</div>
</div>
<a href="./faq.html" class="nav-link"><i class="fa-solid fa-question-circle"></i> FAQ</a>
<a href="./assets/html_files/contact.html" class="nav-link"><i class="fa-solid fa-phone"></i> Contact Us</a>
</div>
</div>
</nav>
<header>
<h1>Project Vault</h1>
<p>Discover amazing projects across web development, gaming, and machine learning</p>
</header>
<main>
<div class="category-container">
<a class="category-card fade-in" href="#" style="animation-delay: 0.1s">
<h2>🌐 Static Websites</h2>
<p>Explore beautiful, responsive websites built with modern web technologies and best practices</p>
</a>
<a class="category-card fade-in" href="#" style="animation-delay: 0.2s">
<h2>🎮 Games</h2>
<p>Interactive games and entertainment projects showcasing creative programming and user experience</p>
</a>
<a class="category-card fade-in" href="#" style="animation-delay: 0.3s">
<h2>🤖 ML Projects</h2>
<p>Cutting-edge machine learning applications and AI-powered solutions for real-world problems</p>
</a>
</div>
<div class="add-project-section send-message">
<div class="add-project-card">
<h2>Want to add your project?</h2>
<p>
If you have an amazing project that you would like to showcase,
please reach out to us!
</p>
<form action="https://formsubmit.co/pavitraagopi@gmail.com" method="POST"
class="add-project-form">
<div class="form-group">
<input
type="text"
name="projectName"
placeholder="Project Name"
required
/>
</div>
<div class="form-group">
<input
type="url"
name="githubLink"
placeholder="GitHub Link"
required
/>
</div>
<div class="form-group">
<input
type="url"
name="liveLink"
placeholder="Live Project Link"
/>
</div>
<div class="form-group">
<input
type="text"
name="techStack"
placeholder="Tech Stack (e.g. React, Python)"
required
/>
</div>
<div class="form-group">
<textarea
name="description"
placeholder="Project Description"
rows="3"
required
></textarea>
</div>
<button type="submit" class="add-project-btn">Submit</button>
</form>
</div>
</div>
</main>
<footer>
<div class="footer-container">
<div class="footer-section company-info">
<h1 class="heading">Project Vault</h1>
<p>
Project Vault is a curated collection of diverse projects ranging from stunning websites and interactive games to intelligent machine learning applications.
</p>
<div class="social">
<a class="message" href="mailto:pavitraagopi@gmail.com" target="_blank" aria-label="Email">
<i class="fa-solid fa-envelope"></i>
</a>
<a class="linkedin" href="https://www.linkedin.com/in/pavitraa-g/" target="_blank" aria-label="LinkedIn">
<i class="fab fa-linkedin"></i>
</a>
<a class="github" href="https://www.github.com/pavitraag" target="_blank" aria-label="GitHub">
<i class="fab fa-github"></i>
</a>
</div>
</div>
<div class="footer-section quick-links">
<h1 class="heading">Quick Links</h1>
<ul class="footer-ul">
<li><a href="./index.html"><i class="fa-solid fa-house"></i> Home</a></li>
<li><a href="./assets/html_files/aboutus.html"><i class="fa-solid fa-circle-info"></i> About</a></li>
<li><a href="#"><i class="fa-solid fa-icons"></i> Components</a></li>
<li><a href="./faq.html"><i class="fa-solid fa-question-circle"></i> FAQ</a></li>
<li><a href="#"><i class="fa-solid fa-phone"></i> Contact</a></li>
</ul>
</div>
<div class="footer-section send-message">
<h1 class="heading">Keep In Touch</h1>
<form id="contact-form" name="Project Vault Contact" autocomplete="off">
<div class="form-group group1">
<input type="text" id="name" name="name" placeholder="Your name" autocomplete="name" required />
<input type="email" id="email" name="email" placeholder="Your email" autocomplete="email" required />
</div>
<div class="form-group">
<textarea id="message" name="message" placeholder="Your message" required></textarea>
<button type="submit">
<span class="button-text">SEND MESSAGE</span>
<div class="loading" style="display: none"></div>
</button>
<p style="color: white; margin-top: 10px;">
We do not store your data. It will only be used to contact you regarding your message.
</p>
</div>
</form>
</div>
</div>
<div class="copyright">
Created By Pavitraa ❤️ | © <span id="currentYear">2024</span> All Rights Reserved
</div>
</footer>
<script src="https://unpkg.com/typed.js@2.1.0/dist/typed.umd.js"></script>
<script src="script.js"></script>
</body>
</html>