-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (66 loc) · 2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Apex Shield LLC</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #1e2a38;
color: #ffffff;
}
header {
text-align: center;
padding: 20px;
}
header img {
max-width: 200px;
}
main {
text-align: center;
padding: 20px;
}
footer {
margin-top: 20px;
padding: 10px;
background-color: #101820;
color: #ffffff;
width: 100%;
text-align: center;
}
.cta-button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #007bff;
color: #ffffff;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
</style>
</head>
<body>
<header>
<img src="logo.png" alt="Apex Shield Logo">
<h1>Apex Shield</h1>
<h2>Military Free-Fall Technology Solutions</h2>
</header>
<main>
<p>At Apex Shield, we specialize in advanced military free-fall technology solutions. Our state-of-the-art equipment and best in class staff are designed to meet the unique demands of modern defense forces.</p>
<p>Our commitment to excellence ensures that our clients receive the highest quality products and services, enhancing operational capabilities and mission success.</p>
<a href="contact.html" class="cta-button">Contact Us</a>
</main>
<footer>
<p>© 2024 Apex Shield. All rights reserved.</p>
</footer>
</body>
</html>