-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
88 lines (83 loc) · 2.45 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="RobbiewOnline">
<title>RobbiewOnline</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #2c3e50;
color: white;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
header p {
font-size: 1.2em;
}
section {
padding: 20px;
max-width: 1000px;
margin: 0 auto;
background-color: white;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
section h2 {
font-size: 2em;
margin-bottom: 10px;
}
section p {
font-size: 1.1em;
line-height: 1.6;
}
footer {
text-align: center;
padding: 20px;
background-color: #2c3e50;
color: white;
margin-top: 20px;
}
footer p {
margin: 0;
font-size: 0.9em;
}
</style>
</head>
<body>
<header>
<h1>RobbiewOnline</h1>
<p>Professional Software Development Services</p>
</header>
<section>
<h2>About Me</h2>
<p>Hi, I'm Rob Wilson (AKA Robbie W.), a professional software developer and the founder of Devology Ltd. I specialize in creating high-quality, reliable software solutions tailored to meet the needs of businesses and individuals. With years of experience in software development, I'm dedicated to providing exceptional service to my clients.</p>
<p>For more information about me, please visit my personal profile: <a href="https://bento.me/robbiewonline" target="_blank">https://bento.me/robbiewonline</a></p>
</section>
<section>
<h2>Contact Us</h2>
<p>If you would like to get in touch with Devology Ltd, please reach out via our business address:</p>
<address>
Devology Ltd<br>
c/o Knight Accountants<br>
2-6 Sedlescombe Road North<br>
St Leonards on Sea<br>
East Sussex<br>
TN37 7DG<br>
</address>
</section>
<footer>
<p>© 2024 Devology Ltd. All rights reserved.</p>
</footer>
</body>
</html>