-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (44 loc) · 1.55 KB
/
index.html
File metadata and controls
46 lines (44 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Awesome Website</title>
<!-- Include Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<!-- Your custom styles (add your own CSS here) -->
<style>
/* Customize your styles here */
body {
background-color: #f8f9fa;
}
.jumbotron {
background-color: #007bff;
color: #ffffff;
}
/* Add more custom styles as needed */
</style>
</head>
<body>
<div class="jumbotron text-center">
<h1>Welcome to My Awesome Website</h1>
<p>Discover amazing content!</p>
</div>
<div class="container">
<div class="row">
<div class="col-md-6">
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nullam eget justo vel libero tincidunt aliquet.</p>
</div>
<div class="col-md-6">
<h2>Contact</h2>
<p>Email: chandangupta@k2cloud.in</p>
</div>
</div>
</div>
<!-- Include Bootstrap JS (optional) -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>