Skip to content

Commit e99385c

Browse files
committed
update
1 parent b42333b commit e99385c

File tree

5 files changed

+34
-1
lines changed

5 files changed

+34
-1
lines changed

10_github-profile/index.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>GitHub Profile Viewer</title>
7+
<script src="https://cdn.tailwindcss.com"></script>
8+
</head>
9+
<body>
10+
11+
</body>
12+
</html>

10_github-profile/script.js

Whitespace-only changes.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @type {import('tailwindcss').Config} */
2+
module.exports = {
3+
content: ["./*.html"],
4+
theme: {
5+
extend: {},
6+
},
7+
plugins: [],
8+
};

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Welcome to my collection of JavaScript projects! This repository contains variou
1212
* **06 Guess The Number**: A fun game to guess a randomly generated number.
1313
* **07 BMI Calculator**: Calculate your Body Mass Index.
1414
* **08 Background Changer**: A tool to change the background color dynamically.
15+
* **09 Random Quote Generator**: A tool to generate the random quote.
1516

1617
## Live Demo
1718

index.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,19 @@ <h2 class="text-lg font-medium uppercase tracking-widest text-gray-700 mb-6">
122122

123123
</span>
124124
</a>
125-
</li>
125+
</li>
126+
<li>
127+
<a href="09_quote-generator/"
128+
class="flex justify-between items-center border border-gray-200 p-4
129+
hover:bg-black hover:text-white transition-colors duration-200 group">
130+
<span class="text-xl font-semibold group-hover:underline">
131+
09. Random Quote Generator
132+
</span>
133+
<span class="text-sm uppercase font-mono tracking-widest text-gray-500 group-hover:text-white transition-colors">
134+
API Integration | Data Handling
135+
</span>
136+
</a>
137+
</li>
126138
</ul>
127139

128140
<footer class="mt-20 text-center text-xs text-gray-400">

0 commit comments

Comments
 (0)