Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,6 @@ We are proud to be contributing as part of these amazing communities!

![Typing SVG](https://readme-typing-svg.herokuapp.com?font=Fira+Code&size=25&pause=1000&color=6AE3F9&center=true&vCenter=true&width=1000&lines=Learn+By+Building!+💻;100+Web+Projects+Challenge🔥;HTML+CSS+JS+and+More!)

## Note to Cotributors
👉 If you are willing to do changes in the project
👉The files are organized in a manner.
👉If you want to contribute new things please save your file names with the format "projectname-type.extension"
👉 This will be easy for navigation


---

## 🌐 Live Website
Expand Down
2 changes: 1 addition & 1 deletion MainIndex.html → index.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<!-- Modern Navigation -->
<nav class="modern-nav">
<div class="nav-container">
<a href="MainIndex.html" class="nav-brand">
<a href="index.html" class="nav-brand">
<img src="https://i.pinimg.com/736x/1c/54/f7/1c54f7b06d7723c21afc5035bf88a5ef.jpg" alt="WebDevIn_100Days logo"
class="nav-logo" />
WebDevIn_100Days
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<title>Neon Brick Breaker</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tone/14.8.49/Tone.js"></script>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/CSS/Neon-Brick-Breaker.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="game-container">
Expand All @@ -23,6 +23,6 @@
</div>
</div>

<script src="/Logic/Neon-Brick-Breaker.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Live Weather App</title>
<link rel="stylesheet" href="/CSS/WeatherApp.css"/>
<link rel="stylesheet" href="style.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"/>
</head>
<body>
Expand All @@ -28,7 +28,7 @@ <h1>Find weather of your city</h1>
</div>

<div class="not-found">
<img src="/Assets/Images/Weather-404.svg" alt="404 Error"/>
<img src="images/404.svg" alt="404 Error"/>
<p>Oops! Invalid location :/</p>
</div>

Expand Down Expand Up @@ -56,6 +56,6 @@ <h1>Find weather of your city</h1>
</div>
</div>

<script src="/Logic/WeatherApp.js"></script>
<script src="script.js"></script>
</body>
</html>
12 changes: 6 additions & 6 deletions Logic/WeatherApp.js → public/Day-11_WeatherApp/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,21 +85,21 @@ search.addEventListener('click', () => {
const wind = document.querySelector('.weather-details .wind span');
switch (json.weather[0].main) {
case 'Clear':
image.src = '/Assets/Images/Weather-clear.svg';
image.src = 'images/clear.svg';
break;

case 'Rain':
case 'Drizzle':
case 'Thunderstorm':
image.src = '/Assets/Images/Weather-rain.svg';
image.src = 'images/rain.svg';
break;

case 'Snow':
image.src = '/Assets/Images/Weather-snow.svg';
image.src = 'images/snow.svg';
break;

case 'Clouds':
image.src = '/Assets/Images/Weather-cloud.svg';
image.src = 'images/cloud.svg';
break;

case 'Mist':
Expand All @@ -111,11 +111,11 @@ search.addEventListener('click', () => {
case 'Ash':
case 'Squall':
case 'Tornado':
image.src = '/Assets/Images/Weather-mist.svg';
image.src = 'images/mist.svg';
break;

default:
image.src = '/Assets/Images/Weather-cloud.svg';
image.src = 'images/cloud.svg';
}

cityName.innerHTML = `${json.name}, ${json.sys.country}`;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion CSS/coin.css → public/Day-13_Coin_Flip/coin.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
body {
background-image: url(/Assets/Images/CoinFlip.jpg);
background-image: url(6d5938dd7b271e9ad1112ac481c2c4d9.jpg);
background-size: cover;
background-position: center;
background-repeat: no repeat;
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>COIN FLIP</title>
<link rel="stylesheet" href="/CSS/coin.css">
<link rel="stylesheet" href="coin.css">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
Expand Down Expand Up @@ -52,7 +52,7 @@
<button onclick="resetGame()"
class="reset-button"> Reset </button>

<script src="/Logic/coin.js"></script>
<script src="coin.js"></script>

</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>E-Waste Management Hub</title>
<link href="/CSS/E-WasteManagement.css" rel="stylesheet" type="text/css" />
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
Expand All @@ -25,7 +25,7 @@ <h1>E-Waste Management Hub</h1>
<a href="#solutions">Solutions</a>
</li>
<li>
<a href="/HTML Pages/E-WasteLocations.html">Drop-off Locations</a>
<a href="locations.html">Drop-off Locations</a>
</li>
</ul>
</nav>
Expand Down Expand Up @@ -132,6 +132,6 @@ <h2>Get Involved</h2>
<p>© 2025 E-Waste Management Hub - Promoting Responsible Electronic Recycling</p>
</footer>

<script src="/Logic/E-WasteManagement.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>E-Waste Drop-off Locations | E-Waste Management</title>
<link href="/CSS/E-WasteLocation.css" rel="stylesheet" type="text/css" />
<link href="locations.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<nav>
<h1>E-Waste Management Hub</h1>
<ul>
<li>
<a href="/HTML Pages/E-WasteManagement.html">Home</a>
<a href="index.html">Home</a>
</li>
<li>
<a href="/HTML Pages/E-WasteManagement.html#history">History</a>
<a href="index.html#history">History</a>
</li>
<li>
<a href="/HTML Pages/E-WasteManagement.html">Solutions</a>
<a href="index.html#solutions">Solutions</a>
</li>
<li>
<a href="/HTML Pages/E-WasteManagement.html#issues">Management Issues</a>
<a href="index.html#issues">Management Issues</a>
</li>
<li>
<a href="/HTML Pages/E-WasteManagement.html#getInvolved">Collaborate</a>
<a href="index.html#getInvolved">Collaborate</a>
</li>
</ul>
</nav>
Expand Down Expand Up @@ -92,6 +92,6 @@ <h3>Benefits of Proper Disposal</h3>
<p>© 2025 E-Waste Management Hub - Promoting Responsible Electronic Recycling</p>
</footer>

<script src="/Logic/E-WasteLocation.js"></script>
<script src="locations.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Currency Converter</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
<link rel="stylesheet" href="/CSS/Currency-Converter.css">
<script src="/Logic/Currency-Converter.js" defer></script>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="container">
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Random User Generator</title>
<link rel="stylesheet" href="/CSS/Random-User-Generator.css">
<script src="/Logic/Random-User-Generator.js" defer></script>
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>

<body>
<h1>Random User Generator</h1>
<div class="container">
<div class="img-area">
<img src="/Assets/Images/Random-Userimage.png" alt="Random user profile image">
<img src="image.png" alt="Random user profile image">
</div>
<div class="info">
<p>Name: <span id="name"></span></p>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Search Engine</title>
<link rel="stylesheet" href="ImageSearch.css">
<script src="ImageSearchConfig.js" defer></script>
<script src="ImageSearch.js" defer></script>
<link rel="stylesheet" href="style.css">
<script src="config.js" defer></script>
<script src="script.js" defer></script>
</head>

<body>
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tic Tac Toe Game</title>
<link rel="stylesheet" href="/CSS/TicTacToe.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
Expand Down Expand Up @@ -57,6 +57,6 @@ <h2 id="modal-title"></h2>
</div>
</div>

<script src="/Logic/TicTacToe.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Candy Crush Clone</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/CSS/CandyCrush.css">
<link rel="stylesheet" href="styles.css">
</head>
<body class="bg-gradient-to-b from-purple-100 to-pink-100 min-h-screen flex flex-col items-center justify-center p-4">
<div class="max-w-2xl w-full bg-white rounded-xl shadow-2xl p-6">
Expand Down Expand Up @@ -69,6 +69,6 @@ <h3 class="font-semibold text-purple-700 mb-2">Scoring:</h3>
</div>
</div>
</div>
<script src="/Logic/CandyCrush.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Color Picker & Palette Generator</title>
<link rel="stylesheet" href="/CSS/Palette-Generator.css" />
<link rel="stylesheet" href="style.css" />
</head>

<body>
Expand All @@ -25,7 +25,7 @@ <h1>🎨 <span>Color Palette Generator</span></h1>

<canvas id="particle-canvas"></canvas>

<script src="/Logic/Palette-Generator.js"></script>
<script src="script.js"></script>
</body>

</html>
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>QR Code Generator</title>
<link rel="stylesheet" href="/CSS/QR Generator.css">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css">
</head>
<body>
Expand All @@ -26,6 +26,6 @@ <h1>QR Code Generator</h1>
</div>
</div>
</div>
<script src="/Logic/QR Generator.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rock Paper Scissor Game</title>
<link rel="stylesheet" href="/CSS/RockPaper.css"/>
<link rel="stylesheet" href="./style.css"/>
</head>
<body>
<h1> Rock Paper Scissor Game</h1>
<div class="choices">
<div class="choice"id="rock">
<img src="/Assets/Images/Rock-rock.png">
<img src="./rock.png">
</div>
<div class="choice"id="scissor">
<img src="/Assets/Images/Rock-scissor.png">
<img src="./scissor.png">
</div>
<div class="choice"id="paper">
<img src="/Assets/Images/Rock-paper.png">
<img src="./paper.png">
</div>

</div>
Expand All @@ -36,6 +36,6 @@ <h1> Rock Paper Scissor Game</h1>
<div class="msg-container">
<p id="msg">Play your move</p>
</div>
<script src="/Logic/RockPaper.js"> </script>
<script src="./app.js"> </script>
</body>
</html>
File renamed without changes
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ <h1 class="text-3xl font-bold text-slate-800 mb-4">Freehand Drawing Canvas 🎨<
</div>
</main>

<script src="/Logic/Drawing.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>🎯 Target Clicking Game</title>
<link rel="stylesheet" href="/CSS/Target Reflex Test.css">
<link rel="stylesheet" href="styles.css">
</head>

<body>
Expand Down Expand Up @@ -86,7 +86,7 @@ <h2>🎉 Game Over!</h2>
</div>
</div>

<script src="/Logic/Target Reflex Test.js"></script>
<script src="script.js"></script>
</body>

</html>
File renamed without changes.
File renamed without changes.
File renamed without changes
4 changes: 2 additions & 2 deletions HTML Pages/Alien Hunt.html → public/Day-31/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alien Hunt</title>
<link rel="shortcut icon" href="/fav.svg" type="image/x-icon">
<link rel="stylesheet" href="/CSS/Alien Hunt.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="game-container">
Expand Down Expand Up @@ -88,6 +88,6 @@ <h3>Game Settings</h3>
</footer>
</div>

<script src="/Logic/Alien Hunt.js"></script>
<script src="script.js"></script>
</body>
</html>
File renamed without changes.
Loading