-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
148 lines (146 loc) · 6.53 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DoreanByte - Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!-- Navigation -->
<nav class="site-nav">
<a href="index.html" class="logo">DoreanByte</a>
<ul class="links">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</ul>
<ul class="toggle-overlay">
<button class="close-button">✖</button>
<li class="active"><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</ul>
<button class="toggle-nav">☰</button>
</nav>
<!-- Main Content -->
<main class="container">
<!-- Hero Section -->
<section class="banner">
<h1>Software solutions for your business</h1>
<h2>Professional grade custom software solutions from inventory management, stock keeping, staff management and more.</h2>
<a class="btn-rounded" href="pricing.html">Pricing</a>
</section>
<!-- Intro Section -->
<section class="intro-section">
<div class="intro-card">
<span class="icon">
<i class="fa-solid fa-desktop"></i>
</span>
<h3>What's Your Platform?</h3>
<p>
Desktop, mobile or web, we are ready to develop on the platform of your choice.
</p>
</div>
<div class="intro-card">
<span class="icon">
<i class="fa-regular fa-lightbulb"></i>
</span>
<h3>What Do You Need?</h3>
<p>
Individuals or groups, we cater to your unique needs and build for your operational success.
</p>
</div>
<div class="intro-card">
<span class="icon">
<i class="fa-solid fa-money-bill-1"></i>
</span>
<h3>Flexible Pricing</h3>
<p>
Price plans based on your project's requirments and scope, we have friendly pricing and great
delivery.
</p>
</div>
</section>
<!-- More section -->
<section class="more-section">
<div class="more-column">
<div class="more-icon">
<i class="fa-solid fa-gauge-high"></i>
</div>
<div class="more-card">
<h2 class="more-header">Fast Delivery</h2>
<div class="more-body">
<h5 class="more-title">Timely and secure</h5>
<p class="more-text">
We work fast to bring ypur ideas to life, we understand that your business needs the best and
we work with maximum effort to bring out your project.</p>
</div>
</div>
</div>
<div class="more-column reverse">
<div class="more-icon">
<i class="fa-solid fa-star"></i>
</div>
<div class="more-card">
<h2 class="more-header">Customer Focus</h2>
<div class="more-body">
<h5 class="more-title">interactive Development</h5>
<p class="more-text">
We work closely with customers to ensure that all their needs and requirments are met,
ensuring important changes and additions are including in the final product.
</p>
</div>
</div>
</div>
<div class="more-column">
<div class="more-icon">
<i class="fa-solid fa-graduation-cap"></i>
</div>
<div class="more-card">
<h2 class="more-header">Broad Specialties</h2>
<div class="more-body">
<h5 class="more-title">Developers and Analysts</h5>
<p class="more-text">
Our expertise allow us to understand what you need developed, based on your needs
we know the right technologies to build your website or application.
</p>
</div>
</div>
</div>
</section>
</main>
<!-- Footer -->
<footer>
<div class="footer-content">
<div class="footer-content">
<h4>Site Links</h4>
<ul class="footer-links">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="pricing.html">Pricing</a></li>
<li><a href="contact_us.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
<div class="copyright">
© Copyright <span id="year"></span> <strong><span>DoreanByte</span></strong>. All Rights Reserved
</div>
</footer>
<script src="https://kit.fontawesome.com/591eab545c.js" crossorigin="anonymous"></script>
<script src="js/main.js"></script>
</body>
</html>