HTML
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
</head>
<body>
<div id="sectionhome">
<div class="home-page">
<img src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/conference-img.png" class="image" />
<h1 class="heading-1">The Things Conference </h1>
<p class="paragraph-1">Redefining the future of IoT with LoRaWAN</p>
<button class="btn btn-primary" onclick="display('sectiondetailpage')"> Know more</button>
</div>
</div>
<div id="sectiondetailpage">
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/vKJ6nXE_6Hc?rel=0" allowfullscreen></iframe>
</div>
<div class="detail-page">
<h1 class="detail-page-title">The Things Conference</h1>
<p class="detail-page-paragraph">Join Asia's Largest Conference on LoRaWAN</p>
<div class="d-flex flex-row justify-content-center">
<div class="stat-container">
<h1 class="heading-2">1400+</h1>
<p class="paragraph-2">Attendees</p>
</div>
<div class="stat-container">
<h1 class="heading-2">100+</h1>
<p class="paragraph-2">Workshop</p>
</div>
</div>
<div class="d-flex flex-row justify-content-center">
<div class="stat-container">
<h1 class="heading-2">120+</h1>
<p class="paragraph-2">Speakers</p>
</div>
<div class="stat-container">
<h1 class="heading-2">10+</h1>
<p class="paragraph-2">Countries</p>
</div>
</div>
<button class="btn btn-primary" onclick="display('sectionhome')">Back</button>
</div>
</div>
<script type="text/javascript" src="https://d1tgh8fmlzexmh.cloudfront.net/ccbp-static-website/js/ccbp-ui-kit.js"></script>
</body>
</html>
CSS
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');
.home-page {
height: 100vh;
width:100vw;
background-size: cover;
text-align:center;
}
.image {
height: 50vh;
width: 50vw;
}
.heading-1{
font-family:"Roboto";
color:#183b56;
font-size:35px;
font-weight:bold;
padding:10px;
}
.paragraph-1{
font-family:"Roboto";
color:#5a7184;
}
.detail-page{
text-align:center;
font-family:"Roboto";
}
.heading-2{
color:#183b56;
font-family:"Roboto";
font-weight:bold;
}
.paragraph-2{
color:#5a7184;
font-family:"Roboto";
}
.stat-container{
padding:5px;
margin-left:30px;
margin-right:30px;
margin-top:10px;
margin-bottom:10px;
}
.detail-page-title{
color:#183b56;
}
.detail-page-paragraph{
color:#5a7184;
}