-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
70 lines (67 loc) · 3.37 KB
/
about.html
File metadata and controls
70 lines (67 loc) · 3.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Me</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>
<!-- About Section -->
<header class="header">
<h1 class="title">About Me</h1>
</header>
<main class="about-content">
<div class="about-text">
<p>
Hi, I'm Saksham — a passionate and curious computer science undergraduate at IIIT Hyderabad. I enjoy
solving real-world problems through code and building systems that make a meaningful impact.
</p>
<p>
My journey in tech began with C programming, but I’ve since transitioned into C++ for its power and
flexibility, especially when dealing with graph algorithms and competitive programming. I also use
Python for data analysis and visualizations, particularly when prototyping ideas quickly and
efficiently.
</p>
<p>
I have a strong interest in automobiles — from performance benchmarks to market trends, I’m always
in tune with the latest car launches and engineering innovations. I combine this passion with
analytical thinking to explore insights about automotive design and consumer trends.
</p>
<p>
Outside the world of code and combustion engines, I have a deep appreciation for stand-up comedy.
Whether I’m watching Netflix specials or performing a tight 5-minute set at college open mics, I
love the craft of writing punchlines, understanding timing, and making people laugh. It keeps my
creativity alive, sharpens my storytelling, and reminds me not to take life too seriously.
</p>
<p>
One of my favorite things is simply talking to people — about their ideas, their stories, or just
life in general. Meaningful conversations, spontaneous banter, and shared laughter are what fuel my
curiosity and keep me grounded.
</p>
</div>
<div class="profile-picture">
<img src="assets/saksham1.jpeg" alt="Saksham Goyal" class="profile-image">
</div>
</main>
</div>
<script src="script.js"></script>
</body>
</html>