-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackground.html
More file actions
95 lines (87 loc) · 3.91 KB
/
background.html
File metadata and controls
95 lines (87 loc) · 3.91 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Background</title>
<link
href="https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Cormorant+Garamond:wght@400;700&family=UnifrakturCook:wght@700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="lightning-container"></div>
<!-- Navigation Bar -->
<nav class="navbar">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="birthplace.html">My Birthplace</a></li>
<li><a href="background.html">My Background</a></li>
<li><a href="technical-skills.html">Technical Skills</a></li>
<li><a href="text-analyzer.html">Text Analyzer</a></li>
<li><a href="#" id="cv-link">CV</a></li>
</ul>
</nav>
<!-- Header Section -->
<header class="header">
<h1 class="title">My Background</h1>
</header>
<!-- Educational Background Section -->
<section id="education" class="background-section">
<h2 class="section-title">Educational Background</h2>
<ul class="education-list">
<li>
<strong>Bachelor of Technology in Computer Science + MS by Research in Computational Human Sciences</strong> - IIIT Hyderabad (2024 - Present)
<p>Specializing in algorithms, data structures, software engineering and I understand people too.</p>
</li>
<li>
<strong>Senior Secondary Education</strong> - BCM ARYA MODEL SR. SEC. School (2022 - 2024)
<p>Achieved Decent score in CBSE Board Exams with a focus on Mathematics and Artificial Intelligence.</p>
</li>
<li>
<strong>Middle School</strong> - Delhi Public School (2016 - 2022)
<p>Excelled in Science and Mathematics, securing a 98 percent in Class 10.</p>
</li>
<li>
<strong>Elementary School</strong> - Baal Bharati Public School (2011 - 2016)
<p>I was a decent student. <i>don't want to praise myself</i></p>
</li>
<li>
<strong>Junior School</strong> - OM Prakash Bansal Modern School (2009 - 2011)
<p>he he, no more praises</p>
</li>
<li>
<strong>Play School</strong> - Magic Year School (2008 - 2009)
<p>smol child</p>
</li>
</ul>
<!-- Indicator for Achievements Section -->
<div id="scroll-indicator" class="indicator">
Scroll Down for Achievements
<span>↓</span>
</div>
</section>
<!-- Achievements Section -->
<section id="achievements" class="background-section">
<h2 class="section-title">Achievements</h2>
<ul class="achievements-list">
<li>
<strong>SURVIVED</strong> -19 YEARS
<p>I am proud to say, that i have survived 19 years without getting unalived.</p>
</li>
<li>
<strong>I BREATHE</strong> -PROUD OXYGEN CONSUMER
<p>I have no regrets in using oxygen, coz i am not wasting it.</p>
</li>
<li>
<strong>GOOD QUESTION</strong> -BUT THIS QUESTION HURT ME
<p>aur koi achievement hi nahi yaad aayi.</p>
</li>
</ul>
</section>
</div>
<script src="script.js"></script>
</body>
</html>