File tree Expand file tree Collapse file tree 5 files changed +34
-1
lines changed
Expand file tree Collapse file tree 5 files changed +34
-1
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 1+ /** @type {import('tailwindcss').Config } */
2+ module . exports = {
3+ content : [ "./*.html" ] ,
4+ theme : {
5+ extend : { } ,
6+ } ,
7+ plugins : [ ] ,
8+ } ;
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ">
You can’t perform that action at this time.
0 commit comments