-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathritwik_education.html
135 lines (126 loc) · 4.58 KB
/
ritwik_education.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Baskervville+SC&display=swap" rel="stylesheet">
<title>EDUCATION</title>
</head>
<body>
<header><div class="box">
<ul>
<li><a href="http://127.0.0.1:5500/ritwik_about.html" class="menu" id="menu">ABOUT</a></li>
<LI><a href="http://127.0.0.1:5500/ritwik_education.html" class="menu">EDUCATION</a></LI>
<li><a href="http://127.0.0.1:5500/ritwik_contact.html" class="menu">CONTACT</a></li>
<li><a href="http://127.0.0.1:5500/ritwik_experience.html" class="menu">EXPERIENCE</a></li>
<li><a href="http://127.0.0.1:5500/ritwik_skills.html"class="menu">SKILLS</a></li>
<li><a href="http://127.0.0.1:5500/ritwik_certifications.html"class="menu">CERTIFICATIONS</a></li>
<li><a href="http://127.0.0.1:5500/ritwik_achievements.html"class="menu">ACHIEVEMENTS</a></li>
<li><a href="http://127.0.0.1:5500/ritwik_projects.html"class="menu">PROJECTS</a></li>
</ul>
</div></header>
<h1>EDUCATION</h1>
<h2>SCHOOLING</h2>
<div class="dps">
<img src="https://th.bing.com/th?id=OIP.XH-hzLHkZe706iRqRPOOUwHaJR&w=223&h=279&c=8&rs=1&qlt=90&o=6&cb=13&dpr=1.3&pid=3.1&rm=2">
<p>I have completed my entire schooling at Delhi Public School, Ranchi, where I consistently excelled academically. I achieved a perfect 10 CGPA in my Class 10th board examinations, showcasing a strong grasp of diverse subjects. Continuing this momentum, I secured 90.2% in my Class 12th board exams. My academic journey at DPS Ranchi reflects a commitment to excellence, critical thinking, and a solid foundation in both the sciences and humanities.</p>
</div>
<h2>GRADUATION</h2>
<div class="clg">
<img src="https://th.bing.com/th/id/OIP.W_M44hmWvE0e0UTEDml4LAHaGc?rs=1&pid=ImgDetMain">
<p>I graduated from Siddaganga Institute of Technology with a CGPA of 9.10, I spent 4 years of my life there and learnt many new things about life , leadership quality and all and finnaly i bid farewell to the wonderfull institute in the year 2024 reflecting my strong academic performance and dedication throughout my studies. My time at SIT equipped me with a solid foundation in [mention your major or field of study], where I honed my technical skills and developed a deep understanding of the subject matter. This achievement underscores my commitment to excellence and continuous learning.</p>
</div>
<footer>copyright:RISHIT_RAJ.co</footer>
</body>
<style>
h1{
font-family: "Baskervville SC", serif;
font-weight: 400;
font-style: normal;
color: white;
text-align: center;
padding: 20px;
font-size: 5rem;
}
body{
background-color: black;
}
h2{
font-size: 4rem;
text-align: center;
color: white;
}
.dps img{
float: left;
margin-left: 100px;
height: 300px;
width: 300px;
border: solid white 5px;
border-radius: 15%;
}
.dps p{
color: white;
margin-left: 450px;
font-size: 2rem;
padding-top: 30px;
padding-right: 40px;
}
.clg img{
float: left;
margin-left: 100px;
height: 300px;
width: 300px;
border: solid white 5px;
border-radius: 15%;
}
.clg p{
color: white;
margin-left: 450px;
font-size: 2rem;
padding-top: 2px;
padding-right: 40px;
padding-bottom: 50px;
}
footer{
background-color: white;
padding: 10px;
text-align: center;
}
ul{
display: flex;
gap: 1rem;
list-style: none;
}
ul li{
color: #fff;
display: grid;
place-content: center;
margin: 0;
}
.menu{
text-decoration: none;
color: white;
text-align: center;
margin-left: 40PX;
padding-top: 50PX;
padding-bottom: 50px;
}
.menu::before{
content: "";
position: absolute;
width: 100%;
height: 2px;
background: #fff;
border-radius: 5px;
transform: scaleX(0);
transition: all .5s ease;
bottom: 0;
left: 0;
}
#menu{
margin-left: 120px;
}
</style>
</html>