-
Notifications
You must be signed in to change notification settings - Fork 0
/
creative-projects.html
370 lines (348 loc) · 11.4 KB
/
creative-projects.html
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Creative projects</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9"
crossorigin="anonymous"
/>
<script
src="https://kit.fontawesome.com/d74f12bccc.js"
crossorigin="anonymous"
></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?&family=Poppins&family=Raleway&family=Caveat:wght@400..700&family=Dancing+Script:wght@400..700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./style.css" />
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 850px;
margin: 2rem auto !important;
padding: 0 20px;
}
.project-section {
background-color: #fff;
padding: 20px 30px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.project-section h2 {
font-family: "Dancing Script", cursive;
text-align: center;
margin-bottom: 30px;
font-weight: 800;
font-size: 40px;
color: #c8a105;
}
.project-details p {
line-height: 1.6;
font-family: "Poppins", cursive;
font-size: 16px;
color: #777;
margin-bottom: 30px;
}
#downloadBtn-Div {
margin: 20px 0px 10px 280px;
}
.download-button {
margin-left: 5px;
background-color: #c8a105;
color: #fff;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.related-links {
background-color: #fff;
padding: 20px;
border-radius: 8px;
margin-top: 40px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.related-links ul {
list-style-type: none;
padding: 0;
margin-top: 20px;
}
.related-links ul li {
margin-bottom: 10px;
}
.related-links ul li a {
color: #007bff;
text-decoration: none;
}
.related-links ul li a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
max-width: 340px;
padding: 0 5px;
}
.project-section {
padding: 15px;
}
.project-section h2 {
margin-bottom: 30px;
font-size: 26px;
}
.project-details p {
line-height: 1.4;
font-size: 14px;
margin-bottom: 20px;
}
#downloadBtn-Div {
margin: 10px 0px 10px 80px;
}
.download-button {
padding: 8px 15px;
font-size: 14px;
}
.related-links {
padding: 20px 20px 10px;
margin-top: 20px;
}
.related-links h3 {
font-size: 20px;
}
.related-links ul li {
margin-bottom: 5px;
font-size: 14px;
}
}
</style>
</head>
<body>
<div id="loader-wrapper">
<div id="loader"></div>
</div>
<main class="homeMain">
<nav
class="navbar navbar-expand-lg bg-body-tertiary"
style="position: sticky; top: 0; z-index: 100"
>
<div class="container-fluid">
<a class="navbar-brand" href="./index.html">Vishal's Profile</a>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link active"
aria-current="page"
href="./index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="./about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
<li class="nav-item dropdown">
<a
class="nav-link dropdown-toggle"
role="button"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Projects
</a>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="./html-css-projects.html"
>Html/Css projects</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/vishal02527/CPP-Projects-2023"
target="_blank"
>C++ projects</a
>
</li>
<li>
<a class="dropdown-item" href="./javascript-projects.html"
>Javascript projects</a
>
</li>
<li>
<a class="dropdown-item" href="./reactjs-projects.html"
>ReactJs projects</a
>
</li>
<li>
<a class="dropdown-item" href="./nodejs-projects.html"
>NodeJs projects</a
>
</li>
<li>
<a
class="dropdown-item"
href="https://github.com/vishal02527/Java-Projects"
target="_blank"
>Java projects</a
>
</li>
<li>
<a class="dropdown-item" href="./creative-projects.html"
>Creative projects</a
>
</li>
</ul>
</li>
<li class="rightNav">
<form class="formNav" role="search">
<input
class="form-control me-2"
type="search"
placeholder="Search all content"
aria-label="Search"
/>
<button class="btn btn-warning" type="submit">Search</button>
<a href="./signup.html"
><button
type="button"
class="btn btn-success"
style="margin-left: 10px"
>
Signup
</button></a
>
<a href="./login.html"
><button
type="button"
class="btn btn-primary"
style="margin-left: 10px"
>
Login
</button></a
>
</form>
</li>
</ul>
</div>
</div>
</nav>
<section class="container">
<div class="project-section">
<h2>Magazine: Ujjwal gagan</h2>
<div class="project-details">
<p>
In my role as the magazine director, I had the privilege to
conceptualize and design 'Ujjwal Gagan', the official college
magazine of Gagan College of Management and Technology. As a CS
student, honing my design skills has been invaluable, allowing me
to merge technology with creativity to produce innovative and
visually compelling solutions. This project enabled me to combine
my passion for design with the essence of academic culture,
resulting in a visually captivating and informative publication. I
focused on creating a cohesive layout that seamlessly integrated
engaging content, vibrant imagery, and user-friendly navigation.
Through meticulous attention to detail and a deep understanding of
the college's brand identity, I successfully crafted a magazine
that not only showcases the achievements and insights of our
academic community but also serves as a timeless keepsake for
students, faculty, and alumni. 'Ujjwal Gagan' stands as a
testament to my commitment to excellence in design and my ability
to bring creative visions to life in the realm of print media.
</p>
</div>
<iframe
src="https://publuu.com/flip-book/681044/1515417/page/24?embed"
width="100%"
height="420"
scrolling="no"
frameborder="0"
allow="clipboard-write; autoplay; fullscreen"
class="publuuflip"
></iframe>
<div id="downloadBtn-Div">
<a href="#" download=""
><button class="download-button">Download PDF</button></a
>
</div>
</div>
<aside class="related-links">
<h3>Explore more projects</h3>
<ul>
<li><a href="./html-css-projects.html">HTML/CSS Projects</a></li>
<li><a href="./reactjs-projects.html">Reactjs Projects</a></li>
<li>
<a href="./javascript-projects.html">Javascript Projects</a>
</li>
<li>
<a href="https://github.com/vishal02527/CPP-Projects"
>C/C++ Projects</a
>
</li>
<li>
<a href="https://github.com/vishal02527/Java-Projects"
>Java projects</a
>
</li>
</ul>
</aside>
</section>
<footer>
<div class="leftSide">
<a href="/">
<img class="footImg" src=".//images/my-avatar.png" />
</a>
<span class="creator">All rights reserved ©2024, Vishal Kumar</span>
</div>
<ul>
<li>
<a href="https://github.com/vishal02527" target="_blank"
><i class="fa-brands fa-github fa-2xl"></i
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/vishal-kumar-8303a3283/"
target="_blank"
><i class="fa-brands fa-linkedin fa-2xl"></i
></a>
</li>
<li>
<a href="https://codepen.io/Vishal-Kumar25" target="_blank"
><i class="fa-brands fa-codepen fa-2xl"></i
></a>
</li>
</ul>
</footer>
</main>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"
></script>
<script src="script.js"></script>
</body>
</html>