-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmywebsite.html
More file actions
151 lines (151 loc) · 3.22 KB
/
mywebsite.html
File metadata and controls
151 lines (151 loc) · 3.22 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>De Skylancer</title>
<style>
body {
margin: 0;
font-family: 'Arial', sans-serif;
background-color: #001f3f;
color: #ffffff;
}
header {
background: linear-gradient(90deg, #00509E, #001f3f);
padding: 20px;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
font-weight: bold;
}
header p {
font-size: 1.2em;
margin-top: 10px;
color: #d1ecf1;
}
.container {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
border-radius: 10px;
}
.profile {
text-align: center;
margin: 30px 0;
}
.profile img {
width: 150px;
height: 150px;
border-radius: 50%;
border: 3px solid #4ea8de;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}
.profile h2 {
margin-top: 15px;
font-size: 1.8em;
color: #d1ecf1;
}
.contact {
text-align: center;
margin-top: 30px;
font-size: 1.2em;
}
.contact p {
margin: 10px 0;
}
.services {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.services {
background: rgba(0, 80, 158, 0.7);
padding: 15px;
border-radius: 8px;
text-align: center;
flex: 1 1 calc(33.333% - 40px);
min-width: 250px;
color: #ffffff;
transition: transform 0.3s, box-shadow 0.3s;
}
.service:hover {
transform: scale(1.05);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.7);
}
.service h3 {
margin: 10px 0;
font-size: 1.5em;
}
.service p {
font-size: 1em;
}
footer {
text-align: center;
padding: 15px;
background: #001933;
margin-top: 30px;
color: #d1ecf1;
}
footer a{
color: #4ea8de;
text-decoration: none;
}
footer a:hover {
text-decoration: underlined;
}
</style>
</head>
<body>
<header>
<h1>De Skylancer</h1>
<p> Your Gateway to Exceptional Full-Stack Developer</p>
</header>
<div class="container">
<div class="profile">
<img src="profile.jpg" alt="My profile picture">
<h2>Skylancer Faith</h2>
</div>
<h2 style="text-align: center;">Our Services</h2>
<div class="services">
<div class="services">
<h3>Web Development</h3>
<p>Creating responsive, dynamic and modern websites tailored to your needs.</p>
</div>
<div class="service">
<h3>UI/UX Design</h3>
<p>Designing intuitive and engaging user interface for a seamless experience.</p>
</div>
<div class="service">
<h3>E-commerce solutions</h3>
<p>Building robust online stores that drive sales and customers satisfaction.</p>
</div>
<div class="service">
<h3>API Development</h3>
<p>Developing efficient and secure APIs to power your application.</p>
</div>
<div class="service">
<h3>Cloud Intergration</h3>
<p>Ensuring scalable and reliable cloud solution for your business.</p>
</div>
<div class="service">
<h3>Technical Consultation</h3>
<p>Providing expert advice to optimize your tech strategy and archtecture.</p>
</div>
</div>
<div class="contact">
<h2>Contact Me</h2>
<p>Email: <a href="mailto:skylancerfaith@gmail.com">myemail</a></p>
<p>Whatsapp: <a href="https://wa.me/254114123570"target="_blank">whatsapp</a></p>
</div>
</div>
<footer>
© 2025 De Skylancer| <a href="mailto:skylancerfaith@gmail.com">skylancerfaith@gmail.com<a/>
</footer>
</body>
</html>