-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
67 lines (61 loc) · 3.75 KB
/
services.html
File metadata and controls
67 lines (61 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Webcraft Solutions - Services</title>
<link rel="stylesheet" href="landing.css">
<link rel="stylesheet" href="services.css">
<link rel="icon" type="jpg" href="logo.png">
</head>
<body>
<header>
<!-- Your header content here -->
<div class="logo">
<img src="webcraft-logo.png" alt="Your Company Logo">
</div>
<nav class="sidebar">
<ul class="sidebar-menu">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="contact.html">Contact us</a></li>
</ul>
</nav>
</header>
<section class="services">
<h1>Our Services</h1>
<div class="service">
<h2>Web Development</h2>
<p>We offer custom web development services tailored to meet your unique requirements. Our expert backend developers and frontend designers work together to create dynamic and responsive websites that deliver an exceptional user experience.</p>
</div>
<div class="service">
<h2>Web Designing</h2>
<p>Our talented web designers create visually stunning and user-friendly website designs that make a lasting impression. We focus on delivering captivating visuals and intuitive interfaces to engage your audience and boost conversions.</p>
</div>
<div class="service">
<h2>Customizing Pre-existing Websites</h2>
<p>If you already have a website but need further improvements or customization, we've got you covered. Our team can modify existing websites to align with your changing needs, ensuring that you stay ahead in the digital landscape.</p>
</div>
</section>
<section class="expertise">
<h2>Our Expertise</h2>
<p>At Webcraft Solutions, we take pride in our highly experienced team of professionals. Our frontend developers, backend developers, and database managers are experts in their respective fields, and they collaborate seamlessly to deliver top-notch solutions for our clients.</p>
<p>We use the latest and best styles and technologies to create exciting and innovative web experiences that elevate your brand and captivate your audience. With our expertise, your website will stand out in the competitive online landscape.</p>
</section>
<footer>
<!-- Your footer content here -->
<div class="terms">
<p>© 2023 WebCraft. All rights reserved.</p>
<p>All website designs, developments, and content created by WebCraft Solutions are protected under copyright laws. Unauthorized reproduction or use of any material without prior written consent is strictly prohibited</p>
<p>WebCraft Solutions is committed to maintaining the confidentiality of client information and ensuring data security. However, we cannot be held liable for any third-party breaches or unauthorized access to client data.</p>
</div>
<div class="social-icons">
<a href="#" class="linkedin-logo" onclick="window.open('https://www.linkedin.com/in/mohammed-mudabbir-pasha-9a135321b/')"></a>
<a href="#" class="instagram-logo" onclick="window.open('https://www.instagram.com/mysteriosohail/?hl=en')"></a>
<a href="#" class="threads-logo" onclick="window.open('https://www.threads.net/@mysteriosohail')"></a>
<a href="index.html" class="webcraft-logo"></a>
</div>
</footer>
</body>
</html>