Files
git-practice-Vipin/index.html
2025-09-18 09:30:06 +05:30

43 lines
1.5 KiB
HTML

<!-- @format -->
<!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 with our interactive training</p>
<div class="cta-buttons">
<button class="btn primary">Get Started</button>
<button class="btn secondary">Learn More</button>
<button class="btn secondary">Contact Us</button>
<button class="btn secondary">About Us</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 class="shape shape-4"></div>
<div class="shape shape-5"></div>
<div class="shape shape-6"></div>
<div class="shape shape-7"></div>
<div class="shape shape-8"></div>
<div class="shape shape-9"></div>
<div class="shape shape-10"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>