This repository was archived by the owner on Jun 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
57 lines (52 loc) · 2.34 KB
/
Copy pathabout.html
File metadata and controls
57 lines (52 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About - CyberCraft Security</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Q10DW7YJPC"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Q10DW7YJPC');
</script>
</head>
<body>
<header>
<img src="images/symbol.png" alt="CyberCraft" class="logo">
<h1>CyberCraft Security</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li>
<a href="#">More</a>
<ul>
<li><a href="projects.html">Projects</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="art.html">AI Art</a></li>
</ul>
</li>
</ul>
</nav>
</header>
<main class="container">
<section>
<h2>About CyberCraft Security</h2>
<p>CyberCraft Security was founded by a former electrician turned security engineer with a passion for problem-solving and a drive to make the world a safer place. With a Master's Electrician license and a background in system administration, GRC, and more, our founder brings a unique blend of technical expertise and hands-on experience to the field of cybersecurity.</p>
</section>
<section>
<h2>Our Approach</h2>
<p>We believe in a holistic approach to all things, including cybersecurity. Our approach includes the people involved as well as the technology.</p>
<p>We believe in perseverance, innovation, and a relentless pursuit of solutions. We thrive on unraveling the mysteries of technology, understanding how things work, and fixing them when they're broken. </p>
<p>Our mission is simple: to protect and defend, one challenge at a time.</p>
</section>
</main>
<footer>
<p>© 2024 CyberCraft Security. All rights reserved.</p>
</footer>
</body>
</html>