-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
211 lines (195 loc) · 7.99 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
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
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>New Company | Ashim Nepal</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<style>
body {
font-family: Arial, sans-serif;
}
header {
margin-bottom: 50px;
}
.section {
padding: 80px 0;
text-align: center;
}
.gradient-bg {
background: linear-gradient(to right, #74ebd5, #ACB6E5);
color: #000;
}
footer {
background-color: #f8f9fa;
padding: 20px 0;
text-align: center;
}
.card {
margin-bottom: 30px;
}
.testimonial-text {
font-style: italic;
}
.testimonial-author {
font-weight: bold;
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#"><img src = "logoNewNobg.png" alt="logo" height="50px" width="80px">CName</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-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 ml-auto">
<li class="nav-item">
<a class="nav-link" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#services">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#testimonials">Testimonials</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<section id="home" class="section gradient-bg text-black">
<div class="container">
<h1>Welcome to Your Company</h1>
<p>We offer innovative solutions for your business needs.</p>
<a href="#contact" class="btn btn-primary">Get in Touch</a>
</div>
</section>
<section id="about" class="section">
<div class="container">
<h2>About Us</h2>
<p>We are a team of experts dedicated to helping businesses thrive in the digital age.</p>
</div>
</section>
<section id="services" class="section gradient-bg text-black">
<div class="container">
<h2>Our Services</h2>
<div class="row">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Web Development</h5>
<p class="card-text">We create custom websites tailored to your business needs.</p>
</div>
</div>
</div>
<!-- Add more service cards here -->
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Digital Marketing</h5>
<p class="card-text">Our digital marketing strategies help you reach your target audience effectively.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Consulting</h5>
<p class="card-text">We provide expert advice to help your business grow and succeed.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Card 4</h5>
<p class="card-text">We provide expert advice to help your business grow and succeed.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Card 5</h5>
<p class="card-text">We provide expert advice to help your business grow and succeed.</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card">
<div class="card-body">
<h5 class="card-title">Card 6</h5>
<p class="card-text">We provide expert advice to help your business grow and succeed.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="testimonials" class="section text-black">
<div class="container">
<h2>Testimonials</h2>
<div id="testimonialSlider" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<p class="testimonial-text">"Your Company helped us transform our online presence and increase our sales significantly."</p>
<p class="testimonial-author">- John Doe, CEO at ABC Inc.</p>
</div>
<!-- Add more testimonials here -->
<div class="carousel-item">
<p class="testimonial-text">"The team at Your Company is highly skilled and professional. I highly recommend their services."</p>
<p class="testimonial-author">- Jane Smith, Marketing Manager at XYZ Corp.</p>
</div>
</div>
<a class="carousel-control-prev" href="#testimonialSlider" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#testimonialSlider" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</section>
<section id="contact" class="section gradient-bg text-black">
<div class="container">
<h2>Contact Us</h2>
<form id="contactForm">
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" class="form-control" id="email" required>
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea class="form-control" id="message" rows="3" required></textarea>
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
</div>
</section>
</main>
<footer>
<div class="container">
<p>© 2024 Your Company. All rights reserved.</p>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.5.3/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<script src="script.js"></script>
</body>
</html>