-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (58 loc) · 3.59 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
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML>
<html>
<header>
<link rel="stylesheet" href="style3.css">
<link rel="stylesheet" href="table_style.css">
<title>Hello World! - Adrienn J. Sinapis </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">My Webpage</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-->
<h1 class="masthead-heading text-uppercase mb-0">Adrienn J. Sinapis</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 font-weight-light mb-0">MIMS'26 Student, School of Information, University of California Berkeley</p>
</div>
</header>
<section class="text-center">
<div class="text-center my-5">
<!-- put your bio paragraph here; remember to use the correct html tags -->
<h3 class="display-4 fw-bolder"><span class="text-gradient d-inline">About Me</span></h3>
<p class="lead fw-light mb-4">I help companies tackle the challenges of the 21st century.</p>
</div>
<div class="row" style="align-items:center">
<div class="column" style="background-color:#f0f8ff; ">
<h4>Education</h4>
<p class="text-muted"> Seasoned Data Scientist and Fulbright Scholar with a Sociologist-Economist background and 10 years of work experience in Finances, Management Consulting and Academic Research. </p>
</div>
<div class="column" style="background-color:#bcd4e6; ">
<h4>Professional experiences</h4>
<p class="text-muted"> As a member of a Big4's Global People and Change Management teams, I focused on business process improvements, digitalization and organizational change advisory in the last 5 years, working for SMEs to Fortune 50 companies in several domains, from finance, healthcare to energy, ICT and public sectors.</p></div>
</div>
<div class="column" style="background-color:#f0f8ff;">
<h4>Extracurricular</h4>
<p class="text-muted"> Dedicated children’s and office workers’ yoga teacher since 2014.</p>
</div>
</div>
</div>
</section>
</body>
</html>