Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Advisor #21

Merged
merged 2 commits into from
Dec 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion css/information.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,39 @@
line-height: 1.3;
font-size: 20px;
}

.fullwidth {
width: 100%;
object-fit: contain;
margin-bottom: 0px;
}
.advisor {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 40px 0px;
font-family: mediamoure;
}
.advisorside {
font-size: 40px;
margin-bottom: 20px;
text-align: center;
}
.advisorside h1 {
font-size: 50px;
margin-bottom: 20px;
text-align: center;
}
.advisorbody p {
width: 80%;
margin: 0px auto 20px auto;
line-height: 1.3;
font-size: 20px;
}
.advisorside p {
font-size: 40px;
text-decoration: underline;
}
@media screen and (max-width: 768px) {
.informationheader h1 {
font-size: 50px;
Expand All @@ -49,4 +81,7 @@
.informationbody h1 {
font-size: 30px;
}
.advisorside p {
font-size: 30px;
}
}
34 changes: 33 additions & 1 deletion information.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Information</title>
<link rel="stylesheet" href="css/information.css" />

<link rel="stylesheet" href="css/global.css" />
<link rel="stylesheet" href="css/information.css" />
<link rel="icon" type="image/x-icon" href="/images/assests/logo.png" />
</head>
<body>
Expand Down Expand Up @@ -104,6 +105,37 @@ <h1>Trustees Profile</h1>
alt="trustees"
class="fullwidth"
/>
<div class="advisor">
<div class="advisorside">
<h1>Advisors Profile</h1>
<p>Strategic Advisors</p>
</div>
<div class="advisorbody">
<p>
<font color="#E6222b">Professor DVR Seshadri,</font> a Clinical Full
Professor of Marketing at the Indian School of Business, boasts
extensive leadership and teaching experience at
<font color="#E6222b">IIM Bangalore, IIM Ahmedabad, and ISB.</font>
With a rich background in consulting for renowned Indian and
international companies like Tata and L&T, he also serves as a
pro-bono advisor to DHAN Foundation and the Aravind Eye Care System.
<font color="#E6222b">Professor Prakash Satyavageeswaran,</font> an
Assistant Professor of Marketing at
<font color="#E6222b">IIM Udaipur,</font> brings diverse experience
from non-profits to corporates, including Unilever.
</p>
<p>
His research focuses on rural markets, low-income producers, and
marketing interventions for behavior change. Additionally, he advises
non-profits like
<font color="#E6222b"
>Aurolab, Karma Healthcare, and Deshpande Foundation while serving
on</font
>
the board of IIMU Incubation Centre.
</p>
</div>
</div>
<div class="footer">
<div class="footerleft">
<div class="footerlefthead">
Expand Down