Skip to content

Commit

Permalink
changes to css, js scripts added
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe committed Jun 15, 2024
1 parent eeee814 commit 8370b16
Show file tree
Hide file tree
Showing 81 changed files with 7,876 additions and 4,188 deletions.
14 changes: 14 additions & 0 deletions AMD/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,14 @@
border-radius: 5px;
}
</style>
<link rel="stylesheet" href="./css/sidebar.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/forms.css">
<link rel="stylesheet" href="./css/footer.css">
</head>
<body>
@@include('partials/header.html')
<header>
<img src="https://raw.githubusercontent.com/skunkworksza/www/deecfe157af43d2fcdadb4196c9c8b5e3c68660d/assets/icons/bee.svg" alt="Bee Logo">
<h1>AMD (Advanced Micro Devices)</h1>
Expand Down Expand Up @@ -127,6 +133,14 @@ <h3>Training, Products, and Services</h3>
<footer>
<p>&copy; 2024 Skunkworks. All rights reserved.</p>
</footer>
<script src="./js/partnerSearchFilter.js"></script>
<script src="./js/partnerFilter.js"></script>
<script src="./js/mobileDropdown.js"></script>
<script src="./js/main.js"></script>
<script src="./js/include-header.js"></script>
<script src="./js/gulpfile.js"></script>
<script src="./js/formHandeler.js"></script>
<script src="./js/combinedPartnerFilter.js"></script>
</body>
</html>

266 changes: 140 additions & 126 deletions AWS.html
Original file line number Diff line number Diff line change
@@ -1,126 +1,140 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/@carbon/styles/css/styles.css">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/forms.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/sidebar.css">
<title>AWS Training and Services | Skunkworks</title>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#training">Training</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#isv">ISV Offerings</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="welcome" class="section welcome-section">
<div class="welcome-section-content">
<h1>AWS Solutions by Skunkworks</h1>
<p>Comprehensive AWS training, services, and products to empower your business.</p>
</div>
</section>
<section id="training" class="section">
<h1>AWS Training</h1>
<div class="grid-container">
<div>
<h3>AWS Cloud Practitioner Training</h3>
<p>Get started with AWS and learn the fundamentals of cloud computing.</p>
</div>
<div>
<h3>AWS Solutions Architect Training</h3>
<p>Design and deploy scalable, highly available, and fault-tolerant systems on AWS.</p>
</div>
<div>
<h3>AWS Developer Training</h3>
<p>Learn to develop and maintain applications on the AWS platform.</p>
</div>
<div>
<h3>AWS SysOps Administrator Training</h3>
<p>Manage and operate systems on the AWS platform with confidence.</p>
</div>
</div>
</section>
<section id="services" class="section">
<h1>AWS Services</h1>
<div class="grid-container">
<div>
<h3>Cloud Migration</h3>
<p>Seamless migration of your workloads to AWS with our expert support.</p>
</div>
<div>
<h3>Managed Services</h3>
<p>Comprehensive managed services for your AWS environments.</p>
</div>
<div>
<h3>Consulting</h3>
<p>Strategic consulting to optimize your AWS investments.</p>
</div>
<div>
<h3>Support</h3>
<p>24/7 support for all your AWS products and services.</p>
</div>
</div>
</section>
<section id="products" class="section">
<h1>AWS Products</h1>
<div class="grid-container">
<div>
<h3>Amazon EC2</h3>
<p>Scalable virtual servers on the AWS cloud.</p>
</div>
<div>
<h3>Amazon S3</h3>
<p>Durable, scalable, and secure object storage.</p>
</div>
<div>
<h3>Amazon RDS</h3>
<p>Managed relational database service with support for various database engines.</p>
</div>
<div>
<h3>Amazon Lambda</h3>
<p>Run code without provisioning or managing servers.</p>
</div>
</div>
</section>
<section id="isv" class="section">
<h1>ISV Offerings</h1>
<div class="grid-container">
<div>
<h3>Custom Solutions</h3>
<p>Tailored software solutions built on AWS technologies.</p>
</div>
<div>
<h3>Integration Services</h3>
<p>Seamless integration of third-party applications with AWS products.</p>
</div>
<div>
<h3>Application Development</h3>
<p>Developing applications that leverage the power of AWS platforms.</p>
</div>
</div>
</section>
<section id="contact" class="section">
<h1>Contact Us</h1>
<form action="#" method="post">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email">
<input type="text" name="number" placeholder="Number">
<textarea name="message" placeholder="How Can We Help?"></textarea>
<button type="submit">CALL ME BACK</button>
</form>
</section>
<footer>
<p>© 2024 Skunkworks. All rights reserved.</p>
</footer>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://unpkg.com/@carbon/styles/css/styles.css">
<link rel="stylesheet" href="./css/footer.css">
<link rel="stylesheet" href="./css/forms.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/sidebar.css">
<title>AWS Training and Services | Skunkworks</title>
<link rel="stylesheet" href="./css/sidebar.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/forms.css">
<link rel="stylesheet" href="./css/footer.css">
</head>
<body>
@@include('partials/header.html')
<header>
<nav>
<ul>
<li><a href="#training">Training</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#isv">ISV Offerings</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section id="welcome" class="section welcome-section">
<div class="welcome-section-content">
<h1>AWS Solutions by Skunkworks</h1>
<p>Comprehensive AWS training, services, and products to empower your business.</p>
</div>
</section>
<section id="training" class="section">
<h1>AWS Training</h1>
<div class="grid-container">
<div>
<h3>AWS Cloud Practitioner Training</h3>
<p>Get started with AWS and learn the fundamentals of cloud computing.</p>
</div>
<div>
<h3>AWS Solutions Architect Training</h3>
<p>Design and deploy scalable, highly available, and fault-tolerant systems on AWS.</p>
</div>
<div>
<h3>AWS Developer Training</h3>
<p>Learn to develop and maintain applications on the AWS platform.</p>
</div>
<div>
<h3>AWS SysOps Administrator Training</h3>
<p>Manage and operate systems on the AWS platform with confidence.</p>
</div>
</div>
</section>
<section id="services" class="section">
<h1>AWS Services</h1>
<div class="grid-container">
<div>
<h3>Cloud Migration</h3>
<p>Seamless migration of your workloads to AWS with our expert support.</p>
</div>
<div>
<h3>Managed Services</h3>
<p>Comprehensive managed services for your AWS environments.</p>
</div>
<div>
<h3>Consulting</h3>
<p>Strategic consulting to optimize your AWS investments.</p>
</div>
<div>
<h3>Support</h3>
<p>24/7 support for all your AWS products and services.</p>
</div>
</div>
</section>
<section id="products" class="section">
<h1>AWS Products</h1>
<div class="grid-container">
<div>
<h3>Amazon EC2</h3>
<p>Scalable virtual servers on the AWS cloud.</p>
</div>
<div>
<h3>Amazon S3</h3>
<p>Durable, scalable, and secure object storage.</p>
</div>
<div>
<h3>Amazon RDS</h3>
<p>Managed relational database service with support for various database engines.</p>
</div>
<div>
<h3>Amazon Lambda</h3>
<p>Run code without provisioning or managing servers.</p>
</div>
</div>
</section>
<section id="isv" class="section">
<h1>ISV Offerings</h1>
<div class="grid-container">
<div>
<h3>Custom Solutions</h3>
<p>Tailored software solutions built on AWS technologies.</p>
</div>
<div>
<h3>Integration Services</h3>
<p>Seamless integration of third-party applications with AWS products.</p>
</div>
<div>
<h3>Application Development</h3>
<p>Developing applications that leverage the power of AWS platforms.</p>
</div>
</div>
</section>
<section id="contact" class="section">
<h1>Contact Us</h1>
<form action="#" method="post">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="Email">
<input type="text" name="number" placeholder="Number">
<textarea name="message" placeholder="How Can We Help?"></textarea>
<button type="submit">CALL ME BACK</button>
</form>
</section>
<footer>
<p>© 2024 Skunkworks. All rights reserved.</p>
</footer>
<script src="./js/partnerSearchFilter.js"></script>
<script src="./js/partnerFilter.js"></script>
<script src="./js/mobileDropdown.js"></script>
<script src="./js/main.js"></script>
<script src="./js/include-header.js"></script>
<script src="./js/gulpfile.js"></script>
<script src="./js/formHandeler.js"></script>
<script src="./js/combinedPartnerFilter.js"></script>
</body>
</html>
14 changes: 14 additions & 0 deletions AWS/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,14 @@
border-radius: 5px;
}
</style>
<link rel="stylesheet" href="./css/sidebar.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/header.css">
<link rel="stylesheet" href="./css/forms.css">
<link rel="stylesheet" href="./css/footer.css">
</head>
<body>
@@include('partials/header.html')
<header>
<img src="https://raw.githubusercontent.com/skunkworksza/www/deecfe157af43d2fcdadb4196c9c8b5e3c68660d/assets/icons/bee.svg" alt="Bee Logo">
<h1>Amazon Web Services (AWS)</h1>
Expand Down Expand Up @@ -127,6 +133,14 @@ <h3>Training, Products, and Services</h3>
<footer>
<p>&copy; 2024 Skunkworks. All rights reserved.</p>
</footer>
<script src="./js/partnerSearchFilter.js"></script>
<script src="./js/partnerFilter.js"></script>
<script src="./js/mobileDropdown.js"></script>
<script src="./js/main.js"></script>
<script src="./js/include-header.js"></script>
<script src="./js/gulpfile.js"></script>
<script src="./js/formHandeler.js"></script>
<script src="./js/combinedPartnerFilter.js"></script>
</body>
</html>

Loading

0 comments on commit 8370b16

Please sign in to comment.