-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject1.html
More file actions
149 lines (125 loc) · 3.97 KB
/
Copy pathproject1.html
File metadata and controls
149 lines (125 loc) · 3.97 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PROJECT1</title>
<style>
.personal{
background-color: antiquewhite;
font-family: cursive;
}
h1{
background-color:darkorange ;
font-weight: 900;
font-style: oblique;
align-items: center;
animation-name: rightMovement;
animation-duration: 5s;
animation-iteration-count: 2;
animation-delay: 1s;
animation-direction: alternate;
}
@keyframes rightMovement{
from{
top:0;
left:0;
}
to{
top:0;
left:1200px;
}
}
</style>
</head>
<body>
<div class="personal">
<div>
<h1>SHRUTI GHUGE</h1>
<details>
<summary>QUALIFICATIONS
</summary> <p> SSc :Adarsh Vidya Mandir School :94.6%</p>
<p>HSC :V.Z.VAZE College,Mulund,Mumbai:79.80%</p>
<p>FE :I semester SGPA :9.73
<br>II semester SGPA :9.77
</p>
</details>
</div>
<section>
<h2>EDUCATION</h2>
<ul>
<li>Computer Engineering Student</li>
<li>
Adarsh Vidya Mandir School
</li>
<li>
V.Z.VAZE College,Mulund,Mumbai.
</li>
<li>Computer Engineer (2nd year student)</li>
</ul>
</section>
<section>
<h2>Hobbies</h2>
<ul>
<li>painting</li>
<li>exploring things</li>
<li>Reading books</li>
</ul>
</section>
<section>
<h2>SKILLS</h2>
<ul>
<li>C</li>
<li>CPP</li>
<li>PYTHON</li>
<li>HTML</li>
<li>CSS</li>
<li>trying to learn new things</li>
<li> Problem Solving</li>
<li>Always ready to help</li>
</ul>
</section>
<section>
<h2>ACHIEVEMENTS</h2>
<ul>
<li>5 stars in CPP HACKERRRANK</li>
<li>PLATFORM CODING- LEETCODE</li>
<img src="hackerrank.png" width="400" height="200">
</ul>
</section>
<section>
<h2>PROJECTS</h2>
<ul>
<li>
<h3>HOSPITAL MANAGEMENT SYSTEM</h3>
<p>Hospital Management System - in CPP (Use of OOP Concepts)</p>
</li>
<li>
<h3>EMPLOYEE MANAGEMENT</h3>
<p>Part Time and Full time employee salary calculating by using Cpp Concepts</p>
</li>
<li>
<h3>PARKING SYSTEM (in C Language)</h3></li>
</ul>
</section>
<section>
<h2>FREQUENTLY ASKED QUESTION</h2>
<details>
<ul>
<summary>
What is your name?
</summary>
<p>My name is Shruti.</p>
</ul>
</details>
<details><summary>
What is your age?
</summary>
<p>I am 18 yrs old.</p></details>
</section>
<footer>
<p> #2024 Shruti Ghuge.All Rights Reserved.</p>
</footer>
</div>
</body>
</html>