-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathboiler.html
More file actions
137 lines (116 loc) · 5.11 KB
/
boiler.html
File metadata and controls
137 lines (116 loc) · 5.11 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!doctype html>
<html lang="en" data-bs-theme="dark">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>NoteWithCode</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<!-- NAV START HERE -->
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container-fluid">
<a class="navbar-brand" href="#">NoteWithCode <span class="text-danger"></></span></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
<span class="navbar-text">
Made By Bikash Shaw ❤️
</span>
</div>
</div>
</nav>
<!-- NAV ENDS HERE -->
<!-- SLIDE CAROUSEL START HERE -->
<div class="small-divider"></div>
<div id="carouselExampleDark" class="carousel carousel-dark slide" data-bs-ride="carousel" data-bs-interval="2500">
<div class="carousel-indicators">
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="1" aria-label="Slide 2"></button>
<button type="button" data-bs-target="#carouselExampleDark" data-bs-slide-to="2" aria-label="Slide 3"></button>
</div>
<div class="carousel-inner">
<div class="carousel-item active">
<img src="IMG/SLIDE 1.jpg" class="d-block w-100" alt="Slide 1" height="450px">
<div class="carousel-caption d-md-block">
<h5>Study Smart, Not Hard</h5>
<p>It's not about how much you study, but how well you understand.</p>
</div>
</div>
<div class="carousel-item">
<img src="IMG/SLIDE 2.jpg" class="d-block w-100" alt="Slide 2" height="450px">
<div class="carousel-caption d-md-block">
<h5>Time Management</h5>
<p>The key is in not spending time, but in investing it.</p>
</div>
</div>
<div class="carousel-item">
<img src="IMG/SLIDE 3.jpg" class="d-block w-100" alt="Slide 3"height="450px">
<div class="carousel-caption d-md-block">
<h5>Exam Strategies</h5>
<p>Don't stress, do your best, forget the rest.</p>
</div>
</div>
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleDark" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleDark" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div class="small-divider"></div>
<!-- SLIDE CAROUSEL ENDS HERE -->
<!-- SITE ALERTS START HERE -->
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>Site Alert :</strong> This site only follows MAKAUT and SUR-TECH Schedules
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<!-- SITE ALERTS ENDS HERE -->
<!-- MAIN BODY CONTENTS START HERE -->
<!-- MAIN BODY CONTENTS ENDS HERE -->
<!-- FOOTER START HERE -->
<div class="card text-center">
<div class="card-header">
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item">
<a class="nav-link active" aria-current="true" href="#">More</a>
</li>
<li class="nav-item">
<a class="nav-link text-danger" href="faq.html">FAQ</a>
</li>
<li class="nav-item">
<a class="nav-link text-danger" href="donation.html">Donation</a>
</li>
<li class="nav-item">
<a class="nav-link text-danger" href="https://www.linkedin.com/in/bikash-shaw-a97103318/">LinkedIn</a>
</li>
</ul>
</div>
<div class="card-body">
<h5 class="card-title">Why Choose Us ?</h5>
<p class="card-text">Choose us for affordable, high-quality academic support, including
notes, PDFs, assignments, reports, PPTs, and custom services, all
designed to save you time and help you succeed.</p>
<a href="t&c.html" class="btn btn-danger">Terms & Conditions</a>
</div>
</div>
<!-- FOOTER ENDS HERE -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>