🌐 What is Web Development?
Web Development is the process of creating websites using technologies like HTML, CSS, JavaScript, and more. It includes frontend (what users see) and backend (what happens behind the scenes).
🧱 Basic Web Technologies:
- HTML - Structure of the website
- CSS - Styling and layout
- JavaScript - Interactivity
💻 Create a Simple Website (Code Example):
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ARG Cyber Skill Hub</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body style="margin:0;font-family:sans-serif;">
<!-- Navbar -->
<nav style="background:#0f2027;padding:15px 30px;display:flex;justify-content:space-between;align-items:center;">
<div style="color:#00ffff;font-weight:bold;font-size:1.4em;">ARG Cyber Skill Hub</div>
<div>
<a href="#" style="color:#fff;margin:0 15px;text-decoration:none;"><i class="fas fa-home"></i> Home</a>
<a href="#" style="color:#fff;margin:0 15px;text-decoration:none;"><i class="fas fa-user"></i> About</a>
<a href="#" style="color:#fff;margin:0 15px;text-decoration:none;"><i class="fas fa-envelope"></i> Contact</a>
</div>
</nav>
<!-- Main Content -->
<div style="padding:40px;background:#1f4037;color:white;">
<h1 style="color:#00e6e6;">Welcome to ARG Cyber Skill Hub</h1>
<p style="font-size:1.1em;">
ARG Cyber Skill Hub is a professional training center offering Web Development, Ethical Hacking, Digital Marketing and more.
We help students learn practically and get job-ready with real-world skills.
</p>
</div>
<!-- Footer -->
<footer style="background:#0f2027;padding:20px;text-align:center;color:#ccc;">
© 2025 ARG Cyber Skill Hub | Empowering Future Coders
</footer>
</body>
</html>