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 speaker's section #3

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Binary file added Pranav-19BCE0964.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
25 changes: 24 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,29 @@ <h3 class="sectionSubheader">The below describes the major domains under which y
</div>
</div>
</section>
<!-- FAQ SECTION -->
<!--speakers spot-->
<section class="section">
<h1 class="sectionHeader">SPEAKER'S SECTION</h1>
<div class="speakerCards">
<div class="speakerCard">
<img src="spk1.jpg" alt="" class="speakerImg">
<h2 class="speakerhead">Aditya A B</h2>
<p class="speakerdesc">info about them</p>
</div>
<div class="speakerCard">
<img src="spk2.jpg" alt="" class="speakerImg">
<h2 class="speakerhead">Sita A B</h2>
<p class="speakerdesc">info about them</p>
</div>
<div class="speakerCard">
<img src="spk3.jpg" alt="" class="speakerImg">
<h2 class="speakerhead">ABDUL A B</h2>
<p class="speakerdesc">info about them</p>
</div>

</div>
</section>
FAQ SECTION
<div class="container-fixed">
<h1 id="top">Frequently Asked Questions</h1>
</div>
Expand Down Expand Up @@ -164,5 +186,6 @@ <h1 id="top">Frequently Asked Questions</h1>
}
}, 1000);
</script>

</body>
</html>
Binary file added spk1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added spk2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added spk3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 29 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@
html{
margin: 0;
padding: 0;
color: var(--white);
color: var(--white) !important;
overflow-x: hidden;
}

body {
background-color: var(--black);
font-family: 'Poppins', sans-serif;

}

.sectionHeader{
Expand Down Expand Up @@ -154,4 +156,29 @@ body {
}
.FAQ-S{
text-align: center;
}
}
/*SPEAKER*/
.speakerCard{
padding: 20px;
width: fit-content;


}
.speakerCard .speakerImg
{
border-radius: 20px;
}
.speakerCards{
text-align: center;
margin: auto;
width: fit-content;
display: flex;
flex-direction: row;
}
@media (max-width: 420px)
{
.speakerCards{
flex-direction: column;

}
}