-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathachievements.html
More file actions
121 lines (116 loc) · 3.69 KB
/
Copy pathachievements.html
File metadata and controls
121 lines (116 loc) · 3.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Achievements & Blogs - Manvi Mishra</title>
<link href="https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Patrick Hand', cursive;
background-color: #fcf8e8;
padding: 40px;
color: #333;
}
#video-bg {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.container {
max-width: 1000px;
margin: auto;
background: #fff9dc;
border: 4px dashed #2a9d8f;
border-radius: 12px;
box-shadow: 0 6px 30px rgba(0,0,0,0.1);
padding: 30px;
}
h1 {
font-size: 42px;
text-align: center;
color: #2a9d8f;
margin-bottom: 30px;
}
.section {
margin-bottom: 30px;
}
.section h2 {
font-size: 30px;
color: #248378;
margin-bottom: 10px;
border-bottom: 2px dashed #2a9d8f;
padding-bottom: 5px;
}
.section ul {
font-size: 22px;
line-height: 1.7;
padding-left: 30px;
list-style-type: circle;
}
.back {
display: block;
text-align: center;
margin-top: 40px;
font-size: 20px;
color: white;
background-color: #248378;
padding: 10px 20px;
border-radius: 10px;
text-decoration: none;
width: 180px;
margin-left: auto;
margin-right: auto;
box-shadow: 2px 2px #248378;
}
.back:hover {
background-color: #248378;
}
</style>
</head>
<body>
<video id="video-bg" autoplay muted loop>
<source src="darkgreen.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<div class="container">
<h1>Learnings, Case Studies, & Achievements</h1>
<h3>As a first-year student, I’ve started exploring exciting opportunities — from winning startup pitch competitions to participating in hackathons and creative challenges. This section highlights the small milestones I’ve achieved so far in my journey!</h3>
<div class="section">
<h2>🏆 Achievements and Certifications</h2>
<ul>
<li>1st Place at Startup India B-Plan Competition with ThreadLoop (Banasthali Vidyapith)</li>
<img src="bplan.png" alt="B plan Certificate">
<li>Runner-up at Startup Nexas, Mayukh Tech Fest</li>
<img src="startupnexas.png" alt="Startup nexas Certificate">
<li>Participation in Hackathon </li>
<img src="Certificate.png" alt="Hackathon Certificate">
<li>Selected for Woman Enterpreneurship Development Program</li>
<img src="wedp.png" alt="WEDP Certificate">
</ul>
</div>
<div class="section">
<h2>📚 Learnings</h2>
<ul>
<li>Basics of Business Model Canvas, Lean Canvas, and Taxation through WEDP</li>
<li>Practical exposure to real startup environment via E-Cell</li>
<li>Worked on practical web and design projects like ParkEase & ThreadLoop</li>
<li>Image Sorting and Adobe via Upwork Job</li>
</ul>
</div>
<div class="section">
<h2>📝 Blogs / Case Studies</h2>
<ul>
<li>Case study on ParkEase – Efficient Parking Solution (Coming Soon)</li>
<li>Designing Impactful Logos for Upcycling Projects</li>
<li>From Sketch to Screen: My Journey with Canva and Figma</li>
</ul>
</div>
<a class="back" href="index.html">⟵ Back to Home</a>
</div>
</body>
</html>