-
Notifications
You must be signed in to change notification settings - Fork 130
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from akadeepesh/fix
Fixing issue #2 to enchange web design
- Loading branch information
Showing
4 changed files
with
181 additions
and
144 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
"name": "HirotoTsujii" | ||
}, | ||
{ | ||
"name": "Name 2" | ||
"name": "akadeepesh" | ||
}, | ||
{ | ||
"name": "Name 3" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>HacktoberWall</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div style="text-align:right"> | ||
<div class="toggle-container" style="text-align:right"> | ||
<button id="toggleButton" class="toggle-btn">🌞</button> | ||
</div> | ||
</div> | ||
<h1>HacktoberWall</h1> | ||
<p>Contribute to the Hacktoberfest mural by editing the JSON file in the code!</p> | ||
|
||
<div class="wall-section"> | ||
<h2>Participants</h2> | ||
<div id="wall"></div> | ||
</div> | ||
</div> | ||
<link rel="stylesheet" href="style.css" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap" | ||
rel="stylesheet" | ||
/> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>HacktoberWall</h1> | ||
<button | ||
id="toggleButton" | ||
class="toggle-btn" | ||
aria-label="Toggle dark mode" | ||
> | ||
🌞 | ||
</button> | ||
</header> | ||
<main class="container"> | ||
<section class="intro"> | ||
<p> | ||
Contribute to the Hacktoberfest mural by editing the JSON file in the | ||
code! | ||
</p> | ||
</section> | ||
<section class="wall-section"> | ||
<h2>Participants</h2> | ||
<div id="wall" class="wall"></div> | ||
</section> | ||
</main> | ||
<footer> | ||
<p>Contribute at <a href="https://github.com/JollyJolli/HacktoberWall" target="_blank">https://github.com/JollyJolli/HacktoberWall</a></p> | ||
<p> | ||
Contribute at | ||
<a href="https://github.com/JollyJolli/HacktoberWall" target="_blank" | ||
>GitHub</a | ||
> | ||
</p> | ||
</footer> | ||
|
||
<script src="app.js"></script> | ||
</body> | ||
</html> | ||
</body> | ||
</html> |
Oops, something went wrong.