-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelp.html
111 lines (95 loc) · 3 KB
/
Help.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MK Developers</title>
<style>
/* Global Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #343a40; /* Dark grey */
color: #fff;
line-height: 1.4; /* Reduced line height */
}
/* Header Styles */
header {
background-color: #343a40; /* Dark grey */
padding: 10px 20px; /* Reduced padding */
text-align: center;
}
header h1 {
font-size: 2em; /* Reduced font size */
margin-bottom: 5px; /* Reduced margin */
}
/* Navigation Styles */
nav {
display: flex;
justify-content: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px; /* Reduced margin */
font-size: 1em; /* Reduced font size */
}
/* Main Content Styles */
.container {
padding: 10px; /* Reduced padding */
text-align: center;
}
.container h2 {
font-size: 1.5em; /* Reduced font size */
margin-bottom: 10px;
}
.container p {
font-size: 1em; /* Reduced font size */
margin-bottom: 10px; /* Reduced margin */
}
/* Footer Styles */
footer {
background-color: #343a40; /* Dark grey */
padding: 10px 20px; /* Reduced padding */
text-align: center;
margin-top: 10px; /* Reduced margin */
}
footer p {
font-size: 1em; /* Reduced font size */
}
.contact-info {
font-size: 1em; /* Reduced font size */
margin-bottom: 5px; /* Reduced margin */
}
.contact-info a {
color: #fff;
text-decoration: none;
}
</style>
</head>
<body>
<header>
<h1>MK Developers</h1>
<nav>
<a href="#about">About Us</a>
<a href="#contact">Contact Us</a>
</nav>
</header>
<section id="about" class="container">
<h2>About Us</h2>
<p>Welcome to MK Developers. I'm Mr. Kalindu Suraj, a dedicated software developer committed to delivering high-quality solutions for my clients.</p>
</section>
<section id="contact" class="container">
<h2>Contact Us</h2>
<p>Get in touch with me to discuss your project requirements:</p>
<p class="contact-info">Phone: +1 (123) 456-7890</p>
<p class="contact-info">Email: [email protected]</p>
<p class="contact-info">Facebook: <a href="https://www.facebook.com/mkdevelopers">MK Developers</a></p>
<p class="contact-info">LinkedIn: <a href="https://www.linkedin.com/company/mkdevelopers">MK Developers</a></p>
</section>
<footer>
<p>© 2024 MK Developers. All rights reserved.</p>
</footer>
</body>
</html>