-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (77 loc) · 3.7 KB
/
Copy pathindex.html
File metadata and controls
89 lines (77 loc) · 3.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebCraft</title>
<link rel="stylesheet" href="landing.css">
<link rel="icon" type="jpg" href="logo.png">
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<script src="https://kit.fontawesome.com/your-fontawesome-kit-id.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<div class="logo">
<img src="webcraft-logo.png" alt="Your Company Logo">
</div>
<nav class="sidebar">
<ul class="sidebar-menu">
<li><a href="#">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>
<li><a href="#" class="login-btn">Log In</a></li>
</ul>
</nav>
</header>
<section class="hero">
<h1>Welcome to WebCraft Solutions</h1>
<p>Discover the beauty of our services</p>
<a href="#" class="cta-btn">Get Started</a>
</section>
<section class="features">
<div class="feature-box">
<i class="fas fa-laptop"></i>
<h2>Website Development</h2>
<p>We specialize in building dynamic and responsive websites that cater to your specific needs.</p>
</div>
<div class="feature-box">
<i class="fas fa-palette"></i>
<h2>Website Designing</h2>
<p>Our team of creative designers crafts visually stunning and user-friendly website designs.</p>
</div>
<div class="feature-box">
<i class="fas fa-cogs"></i>
<h2>Easy Customization</h2>
<p>Customize and personalize the website to your needs.</p>
</div>
</section>
<section class="login-modal" id="loginModal">
<div class="modal-content">
<span class="close-btn">×</span>
<h2>Log In</h2>
<form method="post">
<label for="username">Username</label>
<input type="text" id="username" name="username" required>
<label for="password">Password</label>
<input type="password" id="password" name="password" required>
<input type="submit" value="Log In">
</form>
</div>
</section>
<footer>
<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>
<script src="script.js"></script>
</body>
</html>