-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (101 loc) · 4.54 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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 navbar1">
<ul class="nav nav-pills">
<li class="nav-item"><a href="https://rohityadav74.github.io/Study-Material/" class="nav-link">Home</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>
</ul>
</header>
<!-- about -->
<div class="container">
<div class="row flex-lg-row-reverse align-items-center g-5 py-5">
<div class="col-10 col-sm-8 col-lg-6">
<img src="jee main.png" class="d-block mx-lg-auto img-fluid" alt="Bootstrap Themes" width="400" height="400" loading="lazy">
</div>
<div class="col-lg-6">
<h1 class="display-5 fw-bold text-body-emphasis lh-1 mb-3">JEE Mains+Advanced </h1>
<p class="lead">Jee main is the one of the prestigious exam in India. Every year almost 10 lakh student sit in this exam.</p>
<p>Thorough this exam almost 50 thousands around 2 % student get seat in NIT IIIT or GFTIS for engineering.</p>
<p>There is one extra exam for take admission in IIT</p>
<p>First Student has to select for this exam by achieving cutoff.</p>
<p>Around 2.5 Lakh student sit in Jee Advanced. And around 40 Thousands Student get selected for counselling round</p>
<p>There is around 11 thousand seat in IIT</p>
<p>There are 23 IIT , 32 NIT and 26 IIIT in India</p>
<div class="d-grid gap-2 d-md-flex justify-content-md-start">
</div>
</div>
</div>
</div>
<!-- feature -->
<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>
</div>
<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>
</div>
<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>
</div>
</div>
</div>
</div>
<!-- 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>