added animated welcome page

This commit is contained in:
Dhanush
2025-08-21 11:48:39 +05:30
parent ef962f417c
commit 081df1b625
3 changed files with 302 additions and 23 deletions

View File

@ -5,10 +5,27 @@
<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">
<h1>Welcome to Git Training Hub</h1>
<div class="welcome-box">
<div class="logo">
<i class="fas fa-code-branch"></i>
</div>
<h1 class="title">Welcome to Git Training Hub</h1>
<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>
</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>