-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
57 lines (45 loc) · 2.32 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
<html>
<head>
<title> TSF CAMP </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<nav class="navbar navbar-expand-sm my-2">
<a class="navbar-brand ml-5" href="https://www.linkedin.com/in/sauravmukherjee44/">SAURAV MUKHERJEE</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<i class="fas fa-bars" style="color: #fff;font-size: 150%;"></i>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><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>
<li class="nav-item"><a class="nav-link" href="contact.html">Contact Us</a></li>
</ul>
</div>
</nav>
<header class="jumbotron">
<div class="container">
<div class="row">
<div class="col-12">
<h1>THE SPARKS FOUNDATION</h1>
<p style="font-size: 2.5em;">The Sparks Foundation Donation Camp </p>
<p>We make a living by what we get.We make a life by what we give.</p>
</div>
</div>
<div class="row">
<div class="col-12">
<a href="donate.html" class="button">DONATE</a>
</div>
</div>
</div>
</header>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<!-- Popper JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="https://kit.fontawesome.com/c252d9c8b4.js" crossorigin="anonymous"></script>
</body>
</html>