-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
36 lines (33 loc) · 1.45 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<title>🎉 GitHub Year In Review 2023 🎉</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' href='main.css'>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="crazy-bg">
<div class="container mx-auto p-8">
<div class="new-year-theme">
<p class="new-year-text">🎉 GitHub Year in Review 2023 🎉</p>
<img src="https://www.svgrepo.com/show/401513/fireworks.svg" alt="Fireworks" class="new-year-graphic animated-spin"
style="height: 100px; margin: 0 auto;">
</div>
<div class="card">
<label for="githubUsername" class="text-lg font-semibold mb-2 text-purple-500">Enter your GitHub username:</label>
<input type="text" id="githubUsername" class="border p-2 rounded-md mb-4" placeholder="Your GitHub username">
<button id="submitBtn" class="bg-purple-500 text-white py-2 px-4 rounded-md cursor-pointer">Take me to Nostalgia</button>
</div>
<!-- Initial content -->
<div id="initialCard">
<h1 class="text-3xl font-bold mb-4 text-pink-600">Welcome to GitHub Year in Review!</h1>
<p>Enter your GitHub username to see your crazy year in review stats!</p>
</div>
<div id="app" class="card p-8 rounded-lg border">
<!-- Dynamic content will be added here using JavaScript -->
</div>
</div>
<script src='main.js'></script>
</body>
</html>