-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
69 lines (66 loc) · 3.01 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BRACU Search</title>
<link rel="stylesheet" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light fixed-top bg-light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="img/brac_logo.png" alt="" width="50px">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About Us</a>
</li>
</ul>
</div>
</div>
</nav>
<main>
<section class="aboutSec">
<h1>
Welcome To
</h1>
<h1>
BRACU Search!
</h1>
<p>
It's a personal project developed by Istiak Al Imran With the help of Ehsanul Haque and Joy Sarker and inspired by Nur Zaman bhaiya's project.
Sabid Mahmud is currently contributing to this project.
</p>
<h5>
Follow us:
</h5>
<a href="https://wwwfacebook.com/toufique.hassan.71" target="_blank" rel="noopener noreferrer">Istiak Al Imran</a>
<br>
<a href="https://wwwfacebook.com/joysarkar077" target="_blank" rel="noopener noreferrer">Joy Sarker</a>
<br>
<a href="https://wwwfacebook.com/ehsan.ome999" target="_blank" rel="noopener noreferrer">Ehsanul Haque Ome</a>
<br>
<a href="https://www.facebook.com/nooo000r" target="_blank" rel="noopener noreferrer">Nur Zaman</a>
<a href="http://linkedin.com/in/SabidMahmud" target="_blank">Sabid Mahmud</a>
</section>
</main>
<footer class="footer">
<p>© 2023 The Debuggers. All rights reserved.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
</body>
</html>