-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial commit: Add landing page for Code Monkey Cybersecurity
- Loading branch information
0 parents
commit 1e3c31c
Showing
2 changed files
with
138 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
<!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="Cybersecurity for Humans"> | ||
<title>Code Monkey Cybersecurity</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background: #f9f9f9; | ||
color: #333; | ||
} | ||
|
||
header { | ||
background: #0d47a1; | ||
color: #fff; | ||
text-align: center; | ||
padding: 2rem 1rem; | ||
} | ||
|
||
header h1 { | ||
font-size: 2.5rem; | ||
margin: 0; | ||
} | ||
|
||
header p { | ||
font-size: 1.2rem; | ||
margin: 0.5rem 0 0; | ||
} | ||
|
||
.container { | ||
width: 90%; | ||
max-width: 1200px; | ||
margin: 2rem auto; | ||
} | ||
|
||
.section { | ||
margin-bottom: 2rem; | ||
padding: 1.5rem; | ||
background: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.section h2 { | ||
font-size: 1.8rem; | ||
margin-bottom: 1rem; | ||
color: #0d47a1; | ||
} | ||
|
||
.btn { | ||
display: inline-block; | ||
padding: 0.8rem 1.5rem; | ||
background: #0d47a1; | ||
color: #fff; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
transition: background 0.3s; | ||
} | ||
|
||
.btn:hover { | ||
background: #1565c0; | ||
} | ||
|
||
footer { | ||
text-align: center; | ||
padding: 1rem 0; | ||
background: #0d47a1; | ||
color: #fff; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Code Monkey Cybersecurity</h1> | ||
<p>Reality-Based Cybersecurity for Humans</p> | ||
</header> | ||
|
||
<main class="container"> | ||
<!-- Services Section --> | ||
<section class="section"> | ||
<h2>Our Services</h2> | ||
<ul> | ||
<li>Penetration Testing and Vulnerability Assessment</li> | ||
<li>Managed XDR Solutions with Wazuh</li> | ||
<li>Backup and Disaster Recovery with Persephone</li> | ||
<li>Secure Cloud Infrastructure Deployment</li> | ||
<li>Custom Cybersecurity Consulting</li> | ||
</ul> | ||
</section> | ||
|
||
<!-- Call to Action Section --> | ||
<section class="section"> | ||
<h2>Why Choose Us?</h2> | ||
<p>At Code Monkey Cybersecurity, we combine cutting-edge technology with a human-first approach to cybersecurity. From ethical hacking to robust disaster recovery, we’re your partner in building a safer digital future.</p> | ||
<a href="#contact" class="btn">Get Started</a> | ||
</section> | ||
|
||
<!-- Contact Section --> | ||
<section class="section" id="contact"> | ||
<h2>Contact Us</h2> | ||
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p>Phone: <a href="tel:+123456789">+1 (234) 567-89</a></p> | ||
<p>Location: Fremantle, Western Australia</p> | ||
</section> | ||
</main> | ||
|
||
<footer> | ||
<p>© 2024 Code Monkey Cybersecurity. All rights reserved.</p> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Welcome to nginx!</title> | ||
<style> | ||
html { color-scheme: light dark; } | ||
body { width: 35em; margin: 0 auto; | ||
font-family: Tahoma, Verdana, Arial, sans-serif; } | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Welcome to nginx!</h1> | ||
<p>If you see this page, the nginx web server is successfully installed and | ||
working. Further configuration is required.</p> | ||
|
||
<p>For online documentation and support please refer to | ||
<a href="http://nginx.org/">nginx.org</a>.<br/> | ||
Commercial support is available at | ||
<a href="http://nginx.com/">nginx.com</a>.</p> | ||
|
||
<p><em>Thank you for using nginx.</em></p> | ||
</body> | ||
</html> |