bootstrap css

This commit is contained in:
Aarya Bhatia 2024-05-25 19:40:33 -05:00
parent 40fb65d763
commit e092acd4e9

View File

@ -4,11 +4,15 @@
<meta charset="UTF-8" /> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- tacit css --> <!-- normalize css -->
<!-- reference: https://yegor256.github.io/tacit/ --> <link rel="stylesheet" href="static/normalize.css" />
<!-- bootstrap css -->
<link <link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet" rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/yegor256/tacit@gh-pages/tacit-css-1.7.1.min.css" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/> />
<!-- bootstrap icons --> <!-- bootstrap icons -->
@ -21,17 +25,18 @@
</head> </head>
<body> <body>
<section> <div class="container my-4">
<h1>Aarya Bhatia</h1> <h1>Aarya Bhatia</h1>
<hr />
<main> <main>
<h2>Introduction</h2> <h4>Introduction</h4>
<p> <p>
Hello, I am a 22 year old software engineer working at Amazon. I Hello, I am a 22 year old software engineer working at Amazon. I
recently completed my Bachelors degree in Applied Mathematics and recently completed my Bachelors degree in Applied Mathematics and
Computer Science at the University of Illinois Urbana-Champaign. Computer Science at the University of Illinois Urbana-Champaign.
</p> </p>
<h2>Skills</h2> <h4>Skills</h4>
<p> <p>
I am experienced in full-stack web development and systems I am experienced in full-stack web development and systems
programming. I am proficient in Linux and C/C++, Python, Go, programming. I am proficient in Linux and C/C++, Python, Go,
@ -43,7 +48,7 @@
<a href="https://github.com/aarya-bhatia/dotfiles">dotfiles</a> on <a href="https://github.com/aarya-bhatia/dotfiles">dotfiles</a> on
Github. Github.
</p> </p>
<h2>Work Experience</h2> <h4>Work Experience</h4>
<p> <p>
This year, I will begin working at Amazon as an SDE. I had my first This year, I will begin working at Amazon as an SDE. I had my first
internship with Amazon in 2023, where I worked on a React project and internship with Amazon in 2023, where I worked on a React project and
@ -53,49 +58,49 @@
Previously, I was the lead course assistant at my university for 2 Previously, I was the lead course assistant at my university for 2
years, where we taught about computer systems and C programming. years, where we taught about computer systems and C programming.
</p> </p>
<h2>Hobbies</h2> <h4>Hobbies</h4>
<p> <p>
I am a trained musician and primarily play the electric guitar, since I am a trained musician and primarily play the electric guitar, since
the last 12 years. I appreciate a wide range of musical genres, the last 12 years. I appreciate a wide range of musical genres,
especially old rock hits and progressive metal artists such as Opeth especially old rock hits and progressive metal artists such as Opeth
and Porcupine Tree. and Porcupine Tree.
</p> </p>
<footer> <h4>Contact</h4>
<p> <p>
Reach out to me for any opportunities on my email: Reach out to me for any opportunities on my email:
<a href="mailto:aarya.bhatia1678@gmail.com" <a href="mailto:aarya.bhatia1678@gmail.com"
>aarya.bhatia1678@gmail.com</a >aarya.bhatia1678@gmail.com</a
>. >.
</p> </p>
<nav>
<ul>
<li>
<a href="mailto:aarya.bhatia1678@gmail.com"
><i class="bi-envelope"></i
></a>
</li>
<li>
<a href="https://www.github.com/aarya-bhatia/"
><i class="bi-github"></i
></a>
</li>
<li>
<a href="https://www.linkedin.com/in/aarya-bhatia/"
><i class="bi-linkedin"></i
></a>
</li>
<li>
<a href="https://www.instagram.com/aarya.bhatia/"
><i class="bi-instagram"></i
></a>
</li>
</ul>
</nav>
</footer>
</main> </main>
</section>
<footer>
<div class="d-flex justify-content-center">
<div class="pe-4">
<a href="mailto:aarya.bhatia1678@gmail.com"
><i class="bi-envelope"></i
></a>
</div>
<div class="pe-4">
<a href="https://www.github.com/aarya-bhatia/"
><i class="bi-github"></i
></a>
</div>
<div class="pe-4">
<a href="https://www.linkedin.com/in/aarya-bhatia/"
><i class="bi-linkedin"></i
></a>
</div>
<div class="pe-4">
<a href="https://www.instagram.com/aarya.bhatia/"
><i class="bi-instagram"></i
></a>
</div>
</div>
</footer>
</div>
</body> </body>
</html> </html>