Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
rohityadav74 authored Oct 24, 2023
1 parent 26bf4a1 commit 0290aaf
Showing 1 changed file with 62 additions and 38 deletions.
100 changes: 62 additions & 38 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,36 @@
<title>JEE Main</title>
<!-- css link for bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<style>
.navbar1{
position:sticky;
top:0;
z-index: 100;
.nav-item{
background-color: antiquewhite;
}
.nav-link:hover{
background-color: white;
}
}
body{
background-color: antiquewhite;
}
</style>

</head>
<body>
<!-- header -->
<header class="d-flex justify-content-center py-3">
<header class="d-flex justify-content-center py-3 navbar1">
<ul class="nav nav-pills">
<li class="nav-item"><a href="#" class="nav-link">Home</a></li>
<li class="nav-item"><a href="#syllabus" class="nav-link">Syllabus</a></li>
<li class="nav-item"><a href="#pricing" class="nav-link">Pricing</a></li>
<li class="nav-item"><a href="#faqs" class="nav-link">FAQs</a></li>
<li class="nav-item"><a href="jeesyllabusanalysis.html" class="nav-link">Syllabus Analysis</a></li>
<li class="nav-item"><a href="#syllabus" class="nav-link">Study Material</a></li>
<li class="nav-item"><a href="#pricing" class="nav-link">Feature</a></li>

<li class="nav-item"><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</header>
</header>


<!-- about -->
Expand All @@ -43,47 +61,53 @@ <h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">JEE Mains+Advanced </
</div>

<!-- feature -->
<div class="container" id="syllabus">
<h1>Syllabus</h1>
<div class="row g-4 py-5 row-cols-1 row-cols-lg-3">
<div class="feature col">
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">


<div class="container" id="syllabus">
<h1>Study Material</h1>
<div class="row row-cols-1 row-cols-md-3 g-4">
<div class="col">
<div class="card h-100">
<img src="physics.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Physics</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This content is a little bit longer.</p>
</div>
<div class="card-footer">
<a href="physics.html">Explore</a>
</div>
</div>
<h3 class="fs-2 text-body-emphasis">Physics</h3>
<p>Here I duscussed physics concept. I provided notes. I discussed important question which is generally asked in exam</p>
<a href="physics.html" class="icon-link">
Click

</a>
</div>
<div class="feature col">
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">

<div class="col">
<div class="card h-100">
<img src="chemistry.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Chemistry</h5>
<p class="card-text">This card has supporting text below as a natural lead-in to additional content.</p>
</div>
<div class="card-footer">
<a href="chemistry.html">Explore</a>
</div>
</div>
<h3 class="fs-2 text-body-emphasis">Chemistry</h3>
<p>Here I discussed Chemistry concept . I provided notes. I discussed important question which is generally asked in exam</p>
<a href="chemistry.html" class="icon-link">
Click

</a>
</div>
<div class="feature col">
<div class="feature-icon d-inline-flex align-items-center justify-content-center text-bg-primary bg-gradient fs-2 mb-3">

<div class="col">
<div class="card h-100">
<img src="mathematics.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Mathematics</h5>
<p class="card-text">This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action.</p>
</div>
<div class="card-footer">
<a href="maths.html">Explore</a>
</div>
</div>
<h3 class="fs-2 text-body-emphasis">Maths</h3>
<p>Here I explain Mathematics syllabus. I provided you notes. I discussed important question which is generally asked in exam</p>
<a href="maths.html" class="icon-link">
Click

</a>
</div>
</div>
</div>
</div>


<!-- pricing -->
<div class="container py-3" id="pricing">
<h1>Pricing</h1>
<h1>Feature</h1>

<main>
<div class="row row-cols-1 row-cols-md-3 mb-3 text-center">
Expand Down Expand Up @@ -187,4 +211,4 @@ <h5>About</h5>
<!-- javascript link for bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>
</html>

0 comments on commit 0290aaf

Please sign in to comment.