-
Notifications
You must be signed in to change notification settings - Fork 2
/
app_development.html
157 lines (147 loc) · 6.04 KB
/
app_development.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
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
154
155
156
157
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DoreanByte - App Development</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 p {
text-align: left;
}
.offerings h3 {
text-align: center;
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><a href="web_design.html">Web Design</a></li>
<li class="active"><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><a href="web_design.html">Web Design</a></li>
<li class="active"><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">App Development</h2>
<p>
DoreanByte also has app development services, where we can build an app on your platform of choice. We are knowledgeable
in the following technological domains:
</p>
<!-- <p>
Our varied expertise makes it such that given your needs over the type of application you seek we can
leverage the most optimal technology stack and utilise it to achieve your desired goals. We do our best to work with
technology stacks we understand and are familiar with but are also open to expanding our skills by utilising recently
developed frameworks as we know this is one of the ways we stay competitive.
</p>
<p>
We have had the pleasurable experience of developing our own Android application <a href="">Katswiri</a> using Flutter and are comfortable utilising
it in future endeavours based on what you our client needs.
</p> -->
</div>
<div class="offerings">
<div>
<h3>Native Applications</h3>
<p>
We are able to create applications that are native to your platform of choice by using the tools that have first party support
from the operating system developers. These technologies include:
</p>
<ul>
<li>Kotlin/Java for native Android Applications</li>
<li>.NET with C# for native Windows Applications</li>
</ul>
<p>And much more.</p>
</div>
<div>
<h3>Cross Platform Applications</h3>
<p>
We also offer flexibility by being able to create applications that can target and run on multiple platforms from a single codebase.
Saving on development cost and time to market. Some of these technologies include:
</p>
<ul>
<li>React Native</li>
<li>Flutter</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><a href="web_design.html">Web Design</a></li>
<li class="active"><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>