-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAssignment.html
195 lines (183 loc) · 8.13 KB
/
Assignment.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/css/bootstrap.min.css" integrity="sha384-xOolHFLEh07PJGoPkLv1IbcEPTNtaed2xpHsD9ESMhqIYd0nLMwNLD69Npy4HI+N" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/jquery@3.5.1/dist/jquery.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.1/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.2/dist/js/bootstrap.min.js" integrity="sha384-+sLIOodYLS7CIrQpBjl+C7nPvqq+FbNUBDunl/OZv93DB7Ln/533i8e/mZXLi/P+" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">Logo</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">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Product</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="hero bg-success text-white text-center py-5">
<div class="container">
<h1>We Help Your Business</h1>
<p class="lead">It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<a href="#" class="btn btn-light">Learn More</a>
</div>
</section>
<!-- Product Section -->
<section class="products py-5">
<div class="container text-center">
<h2>Our Product</h2>
<div class="row">
<div class="col-md-4">
<div class="card p-4">
<div class="icon mb-3">
<img src="path-to-your-icon" alt="SEO Icon" style="width: 50px;">
</div>
<h3>SEO</h3>
<p>It is a long established fact that a reader will be distracted by the content.</p>
</div>
</div>
<div class="col-md-4">
<div class="card p-4">
<div class="icon mb-3">
<img src="path-to-your-icon" alt="Branding Icon" style="width: 50px;">
</div>
<h3>Branding</h3>
<p>It is a long established fact that a reader will be distracted by the content.</p>
</div>
</div>
<div class="col-md-4">
<div class="card p-4">
<div class="icon mb-3">
<img src="path-to-your-icon" alt="Logo Icon" style="width: 50px;">
</div>
<h3>Logo</h3>
<p>It is a long established fact that a reader will be distracted by the content.</p>
</div>
</div>
</div>
</div>
</section>
<!-- About Section -->
<section class="about py-5 bg-light">
<div class="container text-center">
<h2>About Us</h2>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
<img src="path-to-image" alt="About Image" class="img-fluid">
</div>
</section>
<!-- Testimonials Section with Carousel -->
<section class="testimonials py-5">
<div class="container text-center">
<h2>Testimonials</h2>
<div id="testimonialCarousel" class="carousel slide" data-bs-ride="carousel">
<div class="carousel-inner">
<!-- Testimonial 1 -->
<div class="carousel-item active">
<blockquote class="blockquote">
<p class="mb-4">"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout."</p>
<footer class="blockquote-footer">Jon Doe</footer>
</blockquote>
</div>
<!-- Testimonial 2 -->
<div class="carousel-item">
<blockquote class="blockquote">
<p class="mb-4">"Lorem Ipsum is simply dummy text of the printing and typesetting industry."</p>
<footer class="blockquote-footer">Jane Smith</footer>
</blockquote>
</div>
<!-- Testimonial 3 -->
<div class="carousel-item">
<blockquote class="blockquote">
<p class="mb-4">"Contrary to popular belief, Lorem Ipsum is not simply random text."</p>
<footer class="blockquote-footer">John Brown</footer>
</blockquote>
</div>
</div>
<!-- Carousel Controls -->
<button class="carousel-control-prev" type="button" data-bs-target="#testimonialCarousel" 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="#testimonialCarousel" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
</div>
</section>
<!-- Subscribe Section -->
<section class="subscribe-section bg-success text-white py-4">
<div class="container text-center">
<h5>Subscribe to Our Newsletter</h5>
<form class="form-inline d-inline-flex">
<div class="input-group">
<input type="email" class="form-control" placeholder="Email ID">
<button type="submit" class="btn btn-light">Subscribe</button>
</div>
</form>
</div>
</section>
<!-- Footer Section -->
<footer class="py-5">
<div class="container">
<div class="row">
<!-- About Company -->
<div class="col-md-4">
<h5>About Company</h5>
<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.</p>
</div>
<!-- Quick Links -->
<div class="col-md-4">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<li><a href="#" class="text-white">Home</a></li>
<li><a href="#" class="text-white">Product</a></li>
<li><a href="#" class="text-white">Pricing</a></li>
<li><a href="#" class="text-white">Contact</a></li>
</ul>
</div>
<!-- Contact Us -->
<div class="col-md-4">
<h5>Contact Us</h5>
<p>info@company.com</p>
<p>+91 079 0000000</p>
<!-- Social Media Icons -->
<a href="#" class="text-white me-3"><i class="bi bi-facebook"></i></a>
<a href="#" class="text-white me-3"><i class="bi bi-twitter"></i></a>
<a href="#" class="text-white"><i class="bi bi-google"></i></a>
</div>
</div>
<!-- Copyright -->
<div class="row mt-4 bg-dark text-white">
<div class="col-md-12 text-center">
<p>© 2024 Company Name. All Rights Reserved.</p>
</div>
</div>
</div>
</footer>
</body>>
</html>