-
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.
- Loading branch information
Showing
2 changed files
with
122 additions
and
29 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 |
---|---|---|
@@ -1,32 +1,96 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Welcome to Getchell Cloud</title> | ||
<title>Getchell's Cloud</title> | ||
<link rel="stylesheet" href="styles.css"> | ||
</head> | ||
|
||
<body> | ||
<header> | ||
<h1>Welcome to Getchell Cloud</h1> | ||
</header> | ||
<main> | ||
<p>We're thrilled to have you here. Website coming soon! maybe?</p> | ||
</main> | ||
<nav> | ||
<ul> | ||
<li><a href="#home">Home</a></li> | ||
<li><a href="#about-me">About Me</a></li> | ||
<li><a href="#skills">Skills</a></li> | ||
<li><a href="#certifications">Certifications</a></li> | ||
<li><a href="#visitors">Visitors</a></li> | ||
<li><a href="#get-in-touch">Get In Touch</a></li> | ||
</ul> | ||
</nav> | ||
|
||
<section id="home"> | ||
<header> | ||
<h1>Welcome to Getchell Cloud</h1> | ||
</header> | ||
<p>We're thrilled to have you here. Dive into the world of Bradley Getchell below.</p> | ||
</section> | ||
|
||
<section id="about-me"> | ||
<h2>About Me</h2> | ||
<p> | ||
Bradley Getchell<br> | ||
San Antonio, TX, 78254<br> | ||
(910) 728-5230 | [email protected]<br> | ||
Security Clearance: DOD Top Secret - SCI || 8570 Level: IAM 3 (CISSP)<br> | ||
</p> | ||
<h3>Professional Summary</h3> | ||
<p> | ||
Experienced Security Engineer with a strong background in vulnerability management, endpoint security, and supply chain security. | ||
Adept at conducting security assessments, developing, and maintaining security policies, collaborating with crossfunctional | ||
teams to implement security controls, managing security incidents, and monitoring security systems and networks. | ||
</p> | ||
</section> | ||
|
||
<section id="skills"> | ||
<h2>Skills</h2> | ||
<ul> | ||
<li>Vulnerability Management</li> | ||
<li>Disaster Recovery</li> | ||
<li>Network | System Optimization</li> | ||
<li>Agile development</li> | ||
<li>Problem Management & Incident Response</li> | ||
<li>Intrusion prevention and detection system</li> | ||
<li>Process Improvement</li> | ||
<li>System Administration and Endpoint Management</li> | ||
<li>Digital Forensics</li> | ||
<li>Insider Threat Management</li> | ||
</ul> | ||
</section> | ||
|
||
<section id="certifications"> | ||
<h2>Certifications</h2> | ||
<ul> | ||
<li>Certified Information Systems Security Professional (CISSP) | August 2020</li> | ||
<!-- ... and so on for each certification ... --> | ||
<li>Splunk Core Certified Power User | July 2023</li> | ||
</ul> | ||
</section> | ||
|
||
<section id="visitors"> | ||
<h2>Website Visitors</h2> | ||
<div id="counter">Loading...</div> | ||
</section> | ||
|
||
<section id="get-in-touch"> | ||
<h2>Get In Touch</h2> | ||
<p>For any inquiries, collaborations, or feedback, you can reach out to me via email at [email protected] or call me at (910) 728-5230.</p> | ||
</section> | ||
|
||
<footer> | ||
<p>© 2023 Getchell Cloud. All Rights Reserved.</p> | ||
</footer> | ||
</body> | ||
<script> | ||
document.addEventListener("DOMContentLoaded", function() { | ||
fetch("/api/CounterFunction") | ||
.then(response => response.json()) | ||
.then(data => { | ||
document.getElementById("counter").innerText = `Visits: ${data.count}`; | ||
}); | ||
}); | ||
</script> | ||
<div id="counter">Loading...</div> | ||
|
||
<script> | ||
document.addEventListener("DOMContentLoaded", function() { | ||
fetch("/api/CounterFunction") | ||
.then(response => response.json()) | ||
.then(data => { | ||
document.getElementById("counter").innerText = `Visits: ${data.count}`; | ||
}); | ||
}); | ||
</script> | ||
</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