-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
238 lines (204 loc) · 9.07 KB
/
index.html
File metadata and controls
238 lines (204 loc) · 9.07 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
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
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TechPulse Solutions</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="style.css" />
</head>
<body>
<!-------------- Navigation section --------------------->
<nav class="navigation" id="body">
<div class="nav-logo">
<img src="images/logo.png" alt="logo" />
</div>
<div class="nav-elements fixed">
<ul>
<li>
<a href="index.html" class="active">Home</a>
</li>
<li><a href="#services">Services</a></li>
<li><a href="#pricing">Pricing</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
<div class="mob-nav-icon">
<ion-icon class="mob-nav-btn " id="mob-nav-btn-1" name="menu-outline"></ion-icon>
<ion-icon class="mob-nav-btn" id="mob-nav-btn-2" name="close-outline"></ion-icon>
</div>
</nav>
<!-- ----------------home section -------------->
<section id="home">
<div class="home-l-container">
<div class="home-heading">
<h1>Crafted for business</h1>
</div>
<div class="home-para ">
<p>
We blend insight and strategy to create digital products for
forward-thinking organisations.
</p>
</div>
<div class="home-btn">
<button class="btn" id="btn1">GET STARTED</button>
<button class="btn" id="btn2">DOWNLOAD</button>
</div>
</div>
<div class="svg-container">
<img src="images/main-middle.svg" alt="home-svg" />
</div>
<div class="home-r-container">
<div class="home-img">
<img src="images/rocket.png" alt="rocket" />
</div>
</div>
</section>
<!-- ----------------services section -------------->
<section id="services" class="bg-white">
<div class="container bg-white py-lg-5 py-md-5 py-sm-2">
<div class="row justify-content-center">
<div class="col-lg-6 col-md-10 pt-3">
<div class="section-title text-center pb-10 ">
<h3 class="title fs-1">Our Services</h3>
<p class="text text-muted">Stop wasting time and money designing and managing a website that doesn’t get
results. Happiness guaranteed!</p>
</div>
</div>
</div>
<!-------------- services - cards --------------------->
<div class="row justify-content-evenly justify-content-md-evenly gap-lg-5 gap-3 py-4 bg-white">
<div class=" col-lg-4 col-md-6 col-sm-9 p-3 service-card ">
<div class="service-up-row d-flex justify-content-between">
<h2><a href="#" id="graphic">Graphic Design</a></h2>
<div class="service-icon">
<img src="images/icon1.png" alt="">
</div>
</div>
<div class="service-down-row d-flex flex-column">
<p>Short description for the ones who look for something new. Short description for the ones who look for
something new.</p>
<a href="#" class="service-link">learn more</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-9 p-4 bg-white service-card">
<div class="service-up-row d-flex justify-content-between">
<h2><a href="#" id="website">Website Design</a></h2>
<div class="service-icon">
<img src="images/icon2.png" alt="">
</div>
</div>
<div class="service-down-row d-flex flex-column">
<p>Short description for the ones who look for something new. Short description for the ones who look for
something new.</p>
<a href="#" class="service-link">Learn more</a>
</div>
</div>
<div class="col-lg-4 col-md-6 col-sm-9 p-4 bg-white service-card">
<div class="service-up-row d-flex justify-content-between">
<h2><a href="#" id="digital">Digital Marketing</a></h2>
<div class="service-icon">
<img src="images/icon3.png" alt="">
</div>
</div>
<div class="service-down-row d-flex flex-column">
<p>Short description for the ones who look for something new. Short description for the ones who look for
something new.</p>
<a href="#" class="service-link">Learn more</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- --------------- pricing section ------------------- -->
<section id="pricing" class="container-fluid">
<div class="container bg-white py-lg-5 py-md-5 py-sm-2 ">
<div class="row justify-content-evenly">
<div class="col-6 pricing-heading fs-1 fs-sm-2 my-3 ">pricing plans</div>
<div class="col-9 pricing-para my-3 ">Stop wasting time and money designing and managing a website that doesn't
get results. Happiness guaranteed!</div>
</div>
<!-------------- pricing - cards --------------------->
<div class="row justify-content-center">
<div class="col-lg-4 col-md-6 col-sm-9 col-10 pricing-card ">
<img src="images/basic.svg" alt="basic">
<h3>Basic</h3>
<h1>$ 199<span>/month</span></h1>
<p>Carefully crafted components
Amazing page examples</p>
<button>GET STARTED</button>
</div>
<div class="col-lg-4 col-md-6 col-sm-9 col-10 pricing-card ">
<img src="images/pro.svg" alt="pro">
<h3>Pro</h3>
<h1>$ 399<span>/month</span></h1>
<p>Carefully crafted components
Amazing page examples</p>
<button>GET STARTED</button>
</div>
<div class="col-lg-4 col-md-6 col-sm-9 col-10 pricing-card ">
<img src="images/enterprise.svg" alt="enterprise">
<h3>Enterprise</h3>
<h1>$ 699<span>/month</span></h1>
<p>Carefully crafted components
Amazing page examples</p>
<button>GET STARTED</button>
</div>
</div>
</div>
</section>
<!-- ----------------contact section -------------->
<section id="contact" class="container-fluid bg-white">
<div class="container">
<div class="row justify-content-center py-4 ">
<div class="col-7 pricing-heading text-center fs-1">Contact Us</div>
</div>
<div class="row justify-content-center pb-5">
<div class="col-10 col-sm-6">
<form class="row py-2 ">
<div class="col-12 py-sm-2 py-1">
<label for="inputName" class="form-label">Name :</label>
<input type="text" class="form-control" id="inputName">
</div>
<div class="col-12 py-sm-2 py-1">
<label for="inputEmail4" class="form-label">Email :</label>
<input type="email" class="form-control" id="inputEmail4">
</div>
<div class="col-12 py-sm-2 py-1">
<label for="inputMessage" class="form-label col-4">Message :</label>
<textarea name="message" id="inputMessage" cols="auto" rows="4" class="col-12"
placeholder="Type your message here.." style="padding: 8px;"></textarea>
</div>
<div class="col-12 py-sm-2 py-1">
<button type="submit" class=" btn contact-btn ">Send</button>
</div>
</form>
</div>
<div class="col-5 d-none d-lg-inline d-md-inline d-sm-inline">
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3117.265991495896!2d80.90569622804368!3d26.874044854368098!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x399bfdfa23e57d59%3A0x135134e74587dff2!2sGhanta%20Ghar%2C%20Husainabad%2C%20Lucknow%2C%20Uttar%20Pradesh%20226003!5e0!3m2!1sen!2sin!4v1707709129049!5m2!1sen!2sin"
width="400" height="100%" style="border:0;" allowfullscreen="" referrerpolicy="no-referrer-when-downgrade"
class="col-12 " alt="your network is slow"></iframe>
</div>
</div>
</div>
</section>
<!-- ----------------footer section -------------->
<footer id="footer" class="container-fluid d-flex flex-column justify-content-center ">
<div class="row justify-content-center">
<div class="col-8 text-white text-center">
<h5 class="d-block fs-sm-5 footer-text"> ~created by <a href="https://www.linkedin.com/in/starun0011/"
class="d-inline text-white text-decoration-none">Tarun soni❤️</a></h5>
</div>
</div>
</footer>
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"
integrity="sha512-7eHRwcbYkK4d9g/6tD/mhkf++eoTHwpNM9woBxtPUBWm67zeAfFC+HrdoE2GanKeocly/VxeLvIqwvCdk7qScg=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script>
<script src="index.js"></script>
</body>
</html>