- Updated the subtitle on the welcome page to better describe the purpose of the training sessions - Text now specifies hands-on, interactive Git training for all skill levels - Improves user understanding of the offering at a glance
32 lines
1.2 KiB
HTML
32 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Tech Thursday Demo</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="welcome-box">
|
|
<div class="logo">
|
|
<i class="fas fa-code-branch"></i>
|
|
</div>
|
|
<h2 class="title">Welcome to Git Training Hub !</h2>
|
|
<p class="subtitle">Master version control and collaboration with our hands-on, interactive Git training sessions designed for all skill levels.</p>
|
|
<div class="cta-buttons">
|
|
<button class="btn primary">Get Started</button>
|
|
<button class="btn secondary">Learn More</button>
|
|
</div>
|
|
</div>
|
|
<div class="floating-shapes">
|
|
<div class="shape shape-1"></div>
|
|
<div class="shape shape-2"></div>
|
|
<div class="shape shape-3"></div>
|
|
</div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|