Select Git revision
courses.html
courses.html 4.63 KiB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Secure Learn - Courses</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header Section -->
<header>
<div class="container">
<h1>SecureLearn</h1>
<h3>CyberSecurity Training Platform </h3>
<nav>
<ul>
<li><a href="homepage.html">Home</a></li>
<li><a href="courses.html" class="active">Courses</a></li>
<li><a href="about.html">About</a></li>
<li><a href="index.html">Login/Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<!-- Courses Section -->
<section id="courses">
<div class="container">
<h2>Our Training Courses</h2>
<div class="course-grid">
<!-- Course Card 1: Phishing Awareness -->
<div class="course-card">
<h3>Phishing Awareness</h3>
<p>Learn how to identify and avoid phishing attacks through interactive simulations and real-world examples.</p>
<a href="phishing-options.html" class="btn">Start Course</a>
</div>
<!-- Course Card 2: Password Security -->
<div class="course-card">
<h3>Password Security</h3>
<p>Master the art of creating strong and secure passwords. Use our password strength meter to test your skills.</p>
<a href="password-option.html" class="btn">Start Course</a>
</div>
<!-- Course Card 3: Network Security -->
<div class="course-card">
<h3>Network Security</h3>
<p>Understand how to secure networks from cyber threats. Learn about firewalls, encryption, and more.</p>
<a href="network-option.html" class="btn">Start Course</a>
</div>
<!-- Course Card 4: Malware Identification -->
<div class="course-card">
<h3>Malware Identification</h3>
<p>Learn to detect and remove malware from systems. Practice identifying malware in emails, files, and websites.</p>
<a href="malware-option.html" class="btn">Start Course</a>
</div>
<!-- Course Card 5: Email Security -->
<div class="course-card">
<h3>Email Security</h3>
<p>Learn how to secure email communications, prevent email-based attacks, and protect sensitive information.</p>
<a href="email-option.html" class="btn">Start Course</a>
</div>
<!-- Course Card 6: Cloud Security -->
<div class="course-card">
<h3>Cloud Security</h3>
<p>Learn how to secure cloud environments and protect data stored in the cloud. Covers AWS, Azure, and Google Cloud.</p>
<a href="cloud-option.html" class="btn">Start Course</a>