-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 2.45 KB
/
index.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
<!DOCTYPE HTML>
<html>
<header>
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="table_style.css">
<title>Shubham's Website</title>
</header>
<body>
<!---Navigation--->
<!--This section of code defines the navigation bar at the top of the page. The classes used here are defined in the style.css file.-->
<nav class="navbar navbar-expand-lg bg-secondary text-uppercase fixed-top" id="mainNav">
<div class="container">
<!--This code defines the "My Webpage" link in the top left corner of the navigation pane-->
<a class="navbar-brand" href="./index.html">Shubham Gupta</a>
<!--This code defines the "List" link in the top right corner of the navigation pane-->
<ul class="navbar-nav ms-auto">
<li class="nav-item mx-0 mx-lg-1"><a class="nav-link py-3 px-0 px-lg-3 rounded" href="./list.html">List</a></li>
</ul>
</div>
</nav>
<!--This section defines the middle section of the webpage-->
<header class="masthead bg-primary text-white text-center">
<div class="container d-flex align-items-center flex-column">
<!-- This code is for the student name-->
<h0 class="masthead-heading text-uppercase mb-0">MIMS'24 Student</h1>
<!--This code creates the two lines separating the student name from the subtitle-->
<div class="divider-custom divider-light">
<div class="divider-custom-line"></div>
<div class="divider-custom-line"></div>
</div>
<!--This code creates the subheading underneath the line dividers-->
<p class="masthead-subheading text-white font-weight-light mb-0">UC Berkeley</p>
</div>
</header>
<section class="text-center">
<div class="divider-custom divider-light">
</div>
<!-- put your bio paragraph here; remember to use the correct html tags -->
<h1 class="masthead-heading text-center mb-0">About Me</h1>
<div>
</div>
<p>
I am Shubham Gupta. </br>
I have experience in Product Management, Entreprenuurship and Venture Capital. I am passionate about the process of creation. </br> In my free time, I like to play piano, write poetry and dance.
</p>
</section>
</body>
</html>