-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathweb_design.html
More file actions
153 lines (142 loc) · 5.7 KB
/
web_design.html
File metadata and controls
153 lines (142 loc) · 5.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
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
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DoreanByte - Web Design</title>
<link rel="stylesheet" href="css/main.css">
<style>
.about-details > p {
max-width: 550px;
margin: 0 auto;
text-align: center;
}
.offerings {
margin-top: 2.5em;
}
.offerings div {
margin-bottom: 2.2em;
}
.offerings h3 {
text-align: center;
}
.offerings p {
text-align: left;
}
.offerings h3 {
color: purple;
}
.offerings ul {
list-style: disc;
color: purple;
font-weight: bold;
}
</style>
</head>
<body>
<nav class="site-nav">
<a href="index.html">
<h2 class="brand">DoreanByte</h2>
</a>
<ul class="links">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="web_design.html">Web Design</a></li>
<li><a href="app_development.html">App Development</a></li>
<li><a href="consultation.html">Consultation</a></li>
<li><a href="about.html">About</a></li>
</ul>
<ul class="toggle-overlay">
<button class="close-button">✖</button>
<li><a href="index.html">Home</a></li>
<li class="active"><a href="web_design.html">Web Design</a></li>
<li><a href="app_development.html">App Development</a></li>
<li><a href="consultation.html">Consultation</a></li>
<li><a href="about.html">About</a></li>
</ul>
<button class="toggle-nav">☰</button>
</nav>
<main class="container">
<div class="about-details">
<h2 class="brand-lg">Web Design and Development</h2>
<p>
We provide web design and development, building quality experiences that meet your needs. Our flexibility lets us utilise
multiple technologies in the following domains:
</p>
</div>
<div class="offerings">
<div>
<h3>Front-end Web Development</h3>
<p>
At DoreanByte we are able to pick from a variety of tools that match your specifications. This gives us the ability to approach your
unique set of challenges in many ways. On the Front-end side of web development, we are knowledgeable in and able to use such technologies as:
</p>
<ul>
<li>HTML, JavaScript and CSS</li>
<li>React, Svelte and Vue for Single Page Applications</li>
<li>Popular CSS Frameworks like BootStrap, Bulma, Tailwind etc.</li>
</ul>
<p>And much more.</p>
</div>
<div>
<h3>Server-side Web Development</h3>
<p>
We also have a strong background in Server-side, technologies. We can build scalable systems that run on your servers. From processing simple
requests to handling multiple concurrent users to your service. These technologies and frameworks include:
</p>
<ul>
<li>Python's Django Framework</li>
<li>PHP using Laravel, Symphony etc.</li>
<li>Leverage the .NET framework with C# to Create Backend Services</li>
<li>Provide Database Administration and Management</li>
</ul>
<p>And much more.</p>
</div>
</div>
</main>
<footer>
<div>
<div>
<div class="footer-content">
<div>
<h3 class="brand">DoreanByte</h3>
<p>
<strong>Email Us: </strong><br>
<a href="mailto:dev.doreanbyte.mw@gmail.com" class="envelope"><i class="bx bx-envelope"></i>dev.doreanbyte.mw@gmail.com</a><br>
<br>
<strong>Contact Us: </strong>
<br>
<br>
<span>
+265887273272
</span>
<br>
<span>
+265882954717
</span>
</p>
</div>
<div class="footer-content">
<h4>Site Links</h4>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="web_design.html">Web Design</a></li>
<li><a href="app_development.html">App Development</a></li>
<li><a href="consultation.html">Consultation</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
</div>
</div>
<div>
<div>
<div class="copyright">
© Copyright <span id="year"></span> <strong><span>DoreanByte</span></strong>. All Rights
Reserved
</div>
</div>
</div>
</footer>
</body>
<script src="js/main.js"></script>
</html>