diff --git a/.DS_Store b/.DS_Store deleted file mode 100644 index 8c9d25ea..00000000 Binary files a/.DS_Store and /dev/null differ diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml new file mode 100644 index 00000000..5828616f --- /dev/null +++ b/.github/workflows/static.yml @@ -0,0 +1,42 @@ +# Simple workflow for deploying static content to GitHub Pages +name: Deploy static content to Pages + +on: + # Runs on pushes targeting the default branch + push: + branches: ["main"] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + +# Allow one concurrent deployment +concurrency: + group: "pages" + cancel-in-progress: true + +jobs: + # Single deploy job since we're just deploying + deploy: + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v3 + - name: Setup Pages + uses: actions/configure-pages@v2 + - name: Upload artifact + uses: actions/upload-pages-artifact@v1 + with: + # Upload entire repository + path: '.' + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v1 diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..e3f5a32d --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +### ignore IDE specific folders ### +.vscode +.idea + +### ignore MacOS specific files ### +.DS_Store \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 45ae26a0..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "liveServer.settings.port": 5503, - "vscode-corda.isCordaProject": false -} \ No newline at end of file diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md new file mode 100644 index 00000000..41dd9ebe --- /dev/null +++ b/CODE_OF_CONDUCT.md @@ -0,0 +1,127 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +We as members, contributors, and leaders pledge to make participation in our +community a harassment-free experience for everyone, regardless of age, body +size, visible or invisible disability, ethnicity, sex characteristics, gender +identity and expression, level of experience, education, socio-economic status, +nationality, personal appearance, race, religion, or sexual identity +and orientation. + +We pledge to act and interact in ways that contribute to an open, welcoming, +diverse, inclusive, and healthy community. + +## Our Standards + +Examples of behavior that contributes to a positive environment for our +community include: + +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, + and learning from the experience +* Focusing on what is best not just for us as individuals, but for the + overall community + +Examples of unacceptable behavior include: + +* The use of sexualized language or imagery, and sexual attention or + advances of any kind +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email + address, without their explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Enforcement Responsibilities + +Community leaders are responsible for clarifying and enforcing our standards of +acceptable behavior and will take appropriate and fair corrective action in +response to any behavior that they deem inappropriate, threatening, offensive, +or harmful. + +Community leaders have the right and responsibility to remove, edit, or reject +comments, commits, code, wiki edits, issues, and other contributions that are +not aligned to this Code of Conduct, and will communicate reasons for moderation +decisions when appropriate. + +## Scope + +This Code of Conduct applies within all community spaces, and also applies when +an individual is officially representing the community in public spaces. +Examples of representing our community include using an official e-mail address, +posting via an official social media account, or acting as an appointed +representative at an online or offline event. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported to the community leaders responsible for enforcement. +All complaints will be reviewed and investigated promptly and fairly. + +All community leaders are obligated to respect the privacy and security of the +reporter of any incident. + +## Enforcement Guidelines + +Community leaders will follow these Community Impact Guidelines in determining +the consequences for any action they deem in violation of this Code of Conduct: + +### 1. Correction + +**Community Impact**: Use of inappropriate language or other behavior deemed +unprofessional or unwelcome in the community. + +**Consequence**: A private, written warning from community leaders, providing +clarity around the nature of the violation and an explanation of why the +behavior was inappropriate. A public apology may be requested. + +### 2. Warning + +**Community Impact**: A violation through a single incident or series +of actions. + +**Consequence**: A warning with consequences for continued behavior. No +interaction with the people involved, including unsolicited interaction with +those enforcing the Code of Conduct, for a specified period of time. This +includes avoiding interactions in community spaces as well as external channels +like social media. Violating these terms may lead to a temporary or +permanent ban. + +### 3. Temporary Ban + +**Community Impact**: A serious violation of community standards, including +sustained inappropriate behavior. + +**Consequence**: A temporary ban from any sort of interaction or public +communication with the community for a specified period of time. No public or +private interaction with the people involved, including unsolicited interaction +with those enforcing the Code of Conduct, is allowed during this period. +Violating these terms may lead to a permanent ban. + +### 4. Permanent Ban + +**Community Impact**: Demonstrating a pattern of violation of community +standards, including sustained inappropriate behavior, harassment of an +individual, or aggression toward or disparagement of classes of individuals. + +**Consequence**: A permanent ban from any sort of public interaction within +the community. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], +version 2.0, available at +https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. + +Community Impact Guidelines were inspired by [Mozilla's code of conduct +enforcement ladder](https://github.com/mozilla/diversity). + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see the FAQ at +https://www.contributor-covenant.org/faq. Translations are available at +https://www.contributor-covenant.org/translations. diff --git a/Game.html b/Game.html new file mode 100644 index 00000000..3a8c17f5 --- /dev/null +++ b/Game.html @@ -0,0 +1,283 @@ + + + + + + + + + + + + + + + + + + + + + Naruto + + + + + + + + +
+
+ +
+ + +
+ + +
+ + + + +
+ + + +
+ +
+ + + + +

Game Section

+
+ +
+

Naruto Character Guessing Game

+

Guess the Naruto character by answering hints!

+

Highest Score : 0

+

Score : 0

+ +

+ + +
+

+
+ +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Game.js b/Game.js new file mode 100644 index 00000000..064efe45 --- /dev/null +++ b/Game.js @@ -0,0 +1,406 @@ +//data +const characters = [ + { + name: ["Naruto", "Naruto Uzumaki", "Uzumaki Naruto"], + hints: [ + "A child born during a time of conflict and upheaval in the ninja world.", + "Sought to realize peace, believing in achieving it through pain and suffering.", + "Became a beacon of hope and understanding for many, inspiring change through unwavering determination.", + "Stood against former comrades, challenging their ideals and seeking to break the cycle of hatred.", + "Become hokage is his dream." + ], + image: "./Images/naruto_ai.jpg" + }, + { + name: ["Sasuke", "Sasuke Uchiha", "Uchiha Sasuke"], + hints: [ + "Bearer of the Uchiha name, veiled in mystery and tragedy.", + "Possesses a compelling Sharingan, a mirror of his brother's power.", + "Haunted by the shadows of a dark past, fostering vengeance.", + "Torn between duty, family ties, and a pursuit for retribution.", + "A skilled wielder of Chidori, channeling lightning's might." + ], + image: "./Images/sasuke_ai.jpg" + }, + { + name: ["Sakura", "Sakura Haruno", "Haruno Sakura"], + hints: [ + "A female ninja adept in medical techniques, rising during a turbulent era", + "Possesses remarkable strength and healing abilities", + "Grew from a young, ambitious girl into a powerful force within her village", + "Has exceptional chakra control", + "Early rivalry and competition with a close friend" + ], + image: "./Images/sakura.jpg" + }, + { + name: ["Kakashi", "Kakashi Hatake", "Hatake Kakashi"], + hints: [ + "The theme of loss, legacy, and redemption is strongly associated with this character", + "This character is known for his proficiency in using the Sharingan", + "Chidori user", + "Part of team 7", + "He is recognized for his silver hair" + ], + image: "./Images/Kakashi_Hatake.png" + }, + { + name: ["Jiraiya"], + hints: [ + "A teacher leaving behind a significant legacy for the future.", + "Holds a special bond with a former teammate", + "Summons otherworldly allies", + "Part of an esteemed trio", + "pervy" + ], + image: "./Images/287665-jiraiya_1.jpg" + }, + { + name: ["Orochimaru"], + hints: [ + "Formerly of the Hidden Leaf Village", + "Wants a body for more power", + "Former member of the Legendary trio", + "Uses snake-related jutsu", + "Seeks immortality" + ], + image: "./Images/orochimaru.jpg" + }, + { + name: ["Hinata", "Hinata Hyuga", "Hyuga Hinata"], + hints: [ + "Member of the Hyuga clan", + "Byakugan user", + "Develops the Gentle Fist technique", + "Has a gentle disposition", + "Has a crush on Naruto" + ], + image: "./Images/hinata_hyuga.jpg" + }, + { + name: ["Shikamaru", "Shikamaru Nara", "Nara Shikamaru"], + hints: [ + "Lazy but highly intelligent", + "Strategic thinker", + "Part of Team 10", + "Shadow Manipulation Jutsu user", + "Becomes a Chunin during the Chunin Exams" + ], + image: "./Images/shikamaru.jpg" + }, + { + name: ["Gaara"], + hints: [ + "Jinchuriki", + "Had a traumatic childhood", + "Initially an antagonist", + "from the Hidden Sand Village", + "Has control over sand" + ], + image: "./Images/gaara.jpg" + }, + { + name: ["Rock Lee", "Lee", "Rock"], + hints: [ + "Taijutsu specialist", + "Believes in hard work over natural talent", + "Wears green jumpsuit", + "Cannot use ninjutsu or genjutsu", + "Disciple of Might Guy", + ], + image: "./Images/Rock-Lee.jpg" + }, + { + name: ["Neji", "Neji Hyuga", "Hyuga Neji"], + hints: [ + "Member of the Hyuga clan", + "Byakugan user", + "Develops the Gentle Fist technique", + "Fate determined by destiny", + "Initially holds a grudge against Hinata" + ], + image: "./Images/neji-hyuga.jpg" + }, + { + name: ["Tenten"], + hints: [ + "Weapon specialist", + "Part of Team Guy", + "Proficient in various ninja tools", + "Uses summoning scrolls", + "Aspires to be like legendary weaponsmiths" + ], + image: "./Images/Tenten.jpg" + }, + { + name: ["Kiba", "Kiba Inuzuka", "Inuzuka Kiba"], + hints: [ + "Member of the Inuzuka clan", + "Uses beast-like taijutsu", + "Has enhanced sense of smell", + "Has a dog companion", + "Part of Team 8" + ], + image: "./Images/kiba inuzuka.jpg" + }, + { + name: ["Shino", "Shino Aburame", "Aburame Shino"], + hints: [ + "Member of the Aburame clan", + "Uses insects as weapons", + "Has a stoic personality", + "Part of Team 8", + "Masters the Parasitic Giant Beetle Jutsu" + ], + image: "./Images/Shino Aburame.jpg" + }, + { + name: ["Ino", "Ino Yamanaka", "Yamanaka Ino"], + hints: [ + "Uses her family's clan techniques", + "Has a rivalry with a close friend", + "Part of Team 10", + "Has mind-transfer jutsu", + "Works at a flower shop" + ], + image: "./Images/1701241-ino.jpg" + }, + { + name: ["Choji", "Choji Akimichi", "Akimichi Choji"], + hints: [ + "Part of Team 10", + "Has a love for food", + "Uses Human Bullet Tank jutsu", + "Member of the Akimichi clan", + "Struggles with self-confidence" + ], + image: "./Images/choji.jpg" + }, + { + name: ["Tsunade"], + hints: [ + "Has incredible strength", + "Master of medical ninjutsu", + "Has a fear of blood", + "Legendary Sannin", + "Fifth Hokage" + ], + image: "./Images/Tsunadexx.png" + }, + { + name: ["Jugo"], + hints: [ + "Possesses Sage Transformation", + "Has the ability to absorb natural energy", + "Has a volatile and unpredictable nature", + "Cursed with uncontrollable rage", + "Part of Sasuke's team" + ], + image: "./Images/Jugo.png" + }, + { + name: ["Suigetsu"], + hints: [ + "Swordsman", + "Wants to collect all the swords", + "Desires to reform the Seven Ninja Swordsmen", + "Can turn his body into liquid", + "Part of Sasuke's team" + ], + image: "./Images/Suigetsu.jpeg" + }, + { + name: ["Karin"], + hints: [ + "Part of Sasuke's team", + "Has a past with Orochimaru", + "Fiercely loyal to Sasuke", + "Has sensory abilities", + "Has healing abilities" + ], + image: "./Images/Karin.png" + }, + { + name: ["Itachi", "Itachi Uchiha", "Uchiha Itachi"], + hints: [ + "Former ANBU member", + "Give life for village", + "Has the Mangekyo Sharingan", + "Certain Someone", + "Massacred the Uchiha clan" + ], + image: "./Images/itachi-uchiha-naruto.jpg" + }, + { + name: ["Kisame"], + hints: [ + "Swordsman", + "Partnered with Itachi", + "Member of the Akatsuki", + "Has shark-like features", + "Uses Samehada as his weapon" + ], + image: "./Images/kisame_hoshigaki.jpg" + }, + { + name: ["Pain", "Nagato", "Yahiko"], + hints: [ + "member of the Akatsuki", + "Former student of Jiraiya", + "Possesses the Rinnegan", + "Believes in achieving peace", + "Uses the Six Paths of Pain technique" + ], + image: "./Images/1688202-nagato_six_paths_of__pain.jpg" + }, + { + name: ["Konan"], + hints: [ + "member of the Akatsuki", + "Former student of Jiraiya", + "Devoted to Yahiko's ideals", + "Childhood friend of Yahiko", + "Uses paper-based jutsu", + ], + image: "./Images/Konan.jpg" + }, + { + name: ["Deidara"], + hints: [ + "Member of the Akatsuki", + "Fights using long-range techniques", + "Artistic approach to battles", + "Uses explosive clay as a weapon", + "Has mouths on his palms", + + ], + image: ",/Images/deidara69.jpg" + }, + { + name: ["Sai"], + hints: [ + "Part of Team 7", + "Uses ink-based jutsu", + "Initially lacks emotions", + "Skilled in espionage", + "Joins Team 7 after Sasuke's departure" + ], + image: "./Images/Sai_Infobox.png" + }, + { + name: ["Yamato"], + hints: [ + "An ANBU captain", + "Has Wood Style jutsu", + "Trained to suppress Nine-Tails' chakra in Naruto", + "Assigned to Team 7 as a replacement for Kakashi", + "Uses Hashirama Senju's cells" + ], + image: "./Images/326748-yamato.jpg" + }, + { + name: ["Kurenai", "Kurenai Yuhi", "Yuhi Kurenai"], + hints: [ + "Genjutsu specialist", + "Part of Team 8", + "Has a child with Asuma", + "Trains Hinata in genjutsu", + "Initially has a romantic interest in Asuma" + ], + image: "./Images/KurenaiYuhi.jpg" + }, + { + name: ["Asuma", "Asuma Sarutobi", "Sarutobi Asuma"], + hints: [ + "Son of the Hokage", + "Part of Team 10", + "Wields trench knives", + "Has a child with Kurenai", + "Trains Shikamaru in shogi" + ], + image: "./Images/322897-asuma_sarutobi.jpg" + }, + { + name: ["Iruka", "Iruka Umino", "Umino Iruka"], + hints: [ + "Academy instructor", + "Cares for Naruto like a father figure", + "Survivor of the Nine-Tails attack", + "Kind-hearted and understanding", + "Helps Naruto graduate from the Academy" + ], + image: "./Images/Iruka-Umino.jpeg" + }, + { + name: ["Zabuza"], + hints: [ + "Demon of the Hidden Mist", + "Carries a massive sword", + "Hired as a mercenary", + "Has a strong bond with Haku", + "Fights Kakashi during the Land of Waves arc" + ], + image: "./Images/zabuza.jpg" + }, + { + name: ["Haku"], + hints: [ + "Has ice-based kekkei genkai", + "Assists Zabuza", + "Seems delicate but is a skilled fighter", + "Feels a strong loyalty to Zabuza", + "Has tragic past" + ], + image: "./Images/Casual_Haku.png" + } +]; + +//Game +let currentCharacter; +let score = 0; +let highestScore = 0; +let attemptCount = 0; + +function startGame() { + document.getElementById('score').innerText = `Score : ${score}`; + document.getElementById('message').textContent = ""; + document.getElementById('imageContainer').innerHTML = "
"; + attemptCount = 0; + const randomIndex = Math.floor(Math.random() * characters.length); + currentCharacter = characters[randomIndex]; + console.log(currentCharacter); + document.getElementById('hint').textContent = `Hint 1: ${currentCharacter.hints[0]}`; +} +function checkAnswer() { + const guess = document.getElementById('guessInput').value.toLowerCase(); + console.log(guess); + if (currentCharacter.name.some((el) => (el.toLowerCase() == guess))) { + document.getElementById("start").innerText = "Continue Playing"; + score += (25 - (attemptCount * 5)); + highestScore = Math.max(highestScore, score); + document.getElementById('high-score').innerText = `Highest Score : ${highestScore}`; + document.getElementById('score').innerText = `Score : ${score}`; + document.getElementById('message').textContent = "Congratulations! You guessed it right!"; + const characterImage = document.createElement("img"); + characterImage.src = currentCharacter.image; + characterImage.id = "game-img"; + document.getElementById('imageContainer').appendChild(characterImage); + document.getElementById('hint').textContent = ''; + } else { + attemptCount++; + if (attemptCount >= 5) { + document.getElementById('message').textContent = `Sorry! You've run out of attempts. The correct answer is ${currentCharacter.name[0]}`; + highestScore = Math.max(highestScore, score); + score = 0; + document.getElementById('score').innerText = `Score : ${score}`; + document.getElementById('high-score').innerText = `Highest Score : ${highestScore}`; + document.getElementById("start").innerText = "Start Game"; + document.getElementById('hint').textContent = ''; + } else { + const hintNumber = attemptCount + 1; + document.getElementById('hint').textContent = `Hint ${hintNumber}: ${currentCharacter.hints[hintNumber - 1]}`; + document.getElementById('message').textContent = "Wrong answer! Try again."; + } + } + document.getElementById('guessInput').value = ''; +} diff --git a/Images/.DS_Store b/Images/.DS_Store deleted file mode 100644 index 1d2c61c0..00000000 Binary files a/Images/.DS_Store and /dev/null differ diff --git a/Images/1stRaikage.webp b/Images/1stRaikage.webp new file mode 100644 index 00000000..291f3284 Binary files /dev/null and b/Images/1stRaikage.webp differ diff --git a/Images/2nd_Raikage.webp b/Images/2nd_Raikage.webp new file mode 100644 index 00000000..de4da9f5 Binary files /dev/null and b/Images/2nd_Raikage.webp differ diff --git a/Images/3314586-1873826322-latest.jpg b/Images/3314586-1873826322-latest.jpg index 86d04207..7de99570 100644 Binary files a/Images/3314586-1873826322-latest.jpg and b/Images/3314586-1873826322-latest.jpg differ diff --git a/Images/369-zabuza.png b/Images/369-zabuza.png new file mode 100644 index 00000000..fb8646f6 Binary files /dev/null and b/Images/369-zabuza.png differ diff --git a/Images/Akatsuki.webp b/Images/Akatsuki.webp new file mode 100644 index 00000000..5579dbf2 Binary files /dev/null and b/Images/Akatsuki.webp differ diff --git a/Images/Amado.webp b/Images/Amado.webp new file mode 100644 index 00000000..030c0f16 Binary files /dev/null and b/Images/Amado.webp differ diff --git a/Images/Baki_Infobox.png b/Images/Baki_Infobox.png new file mode 100644 index 00000000..fcb9307e Binary files /dev/null and b/Images/Baki_Infobox.png differ diff --git a/Images/Butsuma_Senju.jpg b/Images/Butsuma_Senju.jpg new file mode 100644 index 00000000..1a18b172 Binary files /dev/null and b/Images/Butsuma_Senju.jpg differ diff --git a/Images/Chomei-Seven-Tails-in-Naruto.webp b/Images/Chomei-Seven-Tails-in-Naruto.webp new file mode 100644 index 00000000..e0c05054 Binary files /dev/null and b/Images/Chomei-Seven-Tails-in-Naruto.webp differ diff --git a/Images/Daemon.webp b/Images/Daemon.webp new file mode 100644 index 00000000..bd954fc5 Binary files /dev/null and b/Images/Daemon.webp differ diff --git a/Images/Fukusaku.jpg b/Images/Fukusaku.jpg new file mode 100644 index 00000000..7de59aab Binary files /dev/null and b/Images/Fukusaku.jpg differ diff --git a/Images/Gojo_Satoru.jpg b/Images/Gojo_Satoru.jpg new file mode 100644 index 00000000..2f4d06c3 Binary files /dev/null and b/Images/Gojo_Satoru.jpg differ diff --git a/Images/Gyuki-Eight-Tails-in-Naruto.webp b/Images/Gyuki-Eight-Tails-in-Naruto.webp new file mode 100644 index 00000000..570e6458 Binary files /dev/null and b/Images/Gyuki-Eight-Tails-in-Naruto.webp differ diff --git a/Images/Hamura-otsutsuki.jpeg b/Images/Hamura-otsutsuki.jpeg new file mode 100644 index 00000000..1cfda90e Binary files /dev/null and b/Images/Hamura-otsutsuki.jpeg differ diff --git a/Images/Hanabi-Hyuga.webp b/Images/Hanabi-Hyuga.webp new file mode 100644 index 00000000..7ca42c06 Binary files /dev/null and b/Images/Hanabi-Hyuga.webp differ diff --git a/Images/Hayate_Gekk%3F.jpg b/Images/Hayate_Gekk%3F.jpg new file mode 100644 index 00000000..31421083 Binary files /dev/null and b/Images/Hayate_Gekk%3F.jpg differ diff --git a/Images/Himawari Uzumaki.jpg b/Images/Himawari Uzumaki.jpg new file mode 100644 index 00000000..03d43cfe Binary files /dev/null and b/Images/Himawari Uzumaki.jpg differ diff --git a/Images/Ibiki.png b/Images/Ibiki.png new file mode 100644 index 00000000..97b30ef8 Binary files /dev/null and b/Images/Ibiki.png differ diff --git a/Images/Itachi_Uchiha.jpg b/Images/Itachi_Uchiha.jpg new file mode 100644 index 00000000..37b989d8 Binary files /dev/null and b/Images/Itachi_Uchiha.jpg differ diff --git a/Images/Itachi_Uchiha.png b/Images/Itachi_Uchiha.png deleted file mode 100644 index ca5c4060..00000000 Binary files a/Images/Itachi_Uchiha.png and /dev/null differ diff --git a/Images/J3F_Biwa.png b/Images/J3F_Biwa.png new file mode 100644 index 00000000..428f89f4 Binary files /dev/null and b/Images/J3F_Biwa.png differ diff --git a/Images/Jugo.png b/Images/Jugo.png index 4a7e3019..46db6567 100644 Binary files a/Images/Jugo.png and b/Images/Jugo.png differ diff --git a/Images/Juubi.png b/Images/Juubi.png new file mode 100644 index 00000000..d89fa899 Binary files /dev/null and b/Images/Juubi.png differ diff --git a/Images/Kabuto_Yakushi.png b/Images/Kabuto_Yakushi.png new file mode 100644 index 00000000..d0615da2 Binary files /dev/null and b/Images/Kabuto_Yakushi.png differ diff --git a/Images/Kae_Yukiwari.png b/Images/Kae_Yukiwari.png new file mode 100644 index 00000000..ff069f6c Binary files /dev/null and b/Images/Kae_Yukiwari.png differ diff --git a/Images/Karui.webp b/Images/Karui.webp new file mode 100644 index 00000000..325656a9 Binary files /dev/null and b/Images/Karui.webp differ diff --git a/Images/Kiba.jpeg b/Images/Kiba.jpeg new file mode 100644 index 00000000..709efba5 Binary files /dev/null and b/Images/Kiba.jpeg differ diff --git a/Images/KillerBee.png b/Images/KillerBee.png new file mode 100644 index 00000000..99c9fe33 Binary files /dev/null and b/Images/KillerBee.png differ diff --git a/Images/Kotetsu_Hagane.jpg b/Images/Kotetsu_Hagane.jpg new file mode 100644 index 00000000..d44bbdf7 Binary files /dev/null and b/Images/Kotetsu_Hagane.jpg differ diff --git a/Images/Kurama-2.png b/Images/Kurama-2.png new file mode 100644 index 00000000..9028f0d3 Binary files /dev/null and b/Images/Kurama-2.png differ diff --git a/Images/Kushina_Uzumaki.png b/Images/Kushina_Uzumaki.png new file mode 100644 index 00000000..ab0ca952 Binary files /dev/null and b/Images/Kushina_Uzumaki.png differ diff --git a/Images/Mito.jpg b/Images/Mito.jpg new file mode 100644 index 00000000..96f7fc7c Binary files /dev/null and b/Images/Mito.jpg differ diff --git a/Images/Mito.webp b/Images/Mito.webp new file mode 100644 index 00000000..40e80e2c Binary files /dev/null and b/Images/Mito.webp differ diff --git a/Images/MitoUzumaki.jpg b/Images/MitoUzumaki.jpg new file mode 100644 index 00000000..0cd05103 Binary files /dev/null and b/Images/MitoUzumaki.jpg differ diff --git a/Images/Nekobaa.jpg b/Images/Nekobaa.jpg new file mode 100644 index 00000000..e7d681be Binary files /dev/null and b/Images/Nekobaa.jpg differ diff --git a/Images/Nezuko-Demon Slayer.jpg b/Images/Nezuko-Demon Slayer.jpg new file mode 100644 index 00000000..e42a340b Binary files /dev/null and b/Images/Nezuko-Demon Slayer.jpg differ diff --git a/Images/Pakura-img.jpg b/Images/Pakura-img.jpg new file mode 100644 index 00000000..f2b71a4d Binary files /dev/null and b/Images/Pakura-img.jpg differ diff --git a/Images/Raikage3.webp b/Images/Raikage3.webp new file mode 100644 index 00000000..8f030641 Binary files /dev/null and b/Images/Raikage3.webp differ diff --git a/Images/Rasa.jpg b/Images/Rasa.jpg new file mode 100644 index 00000000..6155ea7d Binary files /dev/null and b/Images/Rasa.jpg differ diff --git a/Images/Rock-Lee.jpg b/Images/Rock-Lee.jpg new file mode 100644 index 00000000..31c520eb Binary files /dev/null and b/Images/Rock-Lee.jpg differ diff --git a/Images/Sakumo_Hatake_pic.jpg b/Images/Sakumo_Hatake_pic.jpg new file mode 100644 index 00000000..6e53a7cd Binary files /dev/null and b/Images/Sakumo_Hatake_pic.jpg differ diff --git a/Images/Sarada_Infobox.webp b/Images/Sarada_Infobox.webp new file mode 100644 index 00000000..0c8106f9 Binary files /dev/null and b/Images/Sarada_Infobox.webp differ diff --git a/Images/Shikadai_Nara.webp b/Images/Shikadai_Nara.webp new file mode 100644 index 00000000..222e5f1a Binary files /dev/null and b/Images/Shikadai_Nara.webp differ diff --git a/Images/Shinki.webp b/Images/Shinki.webp new file mode 100644 index 00000000..1164a3d0 Binary files /dev/null and b/Images/Shinki.webp differ diff --git a/Images/Shizune.jpeg b/Images/Shizune.jpeg new file mode 100644 index 00000000..2488bfab Binary files /dev/null and b/Images/Shizune.jpeg differ diff --git a/Images/Tazuna.jfif b/Images/Tazuna.jfif new file mode 100644 index 00000000..e4daa43e Binary files /dev/null and b/Images/Tazuna.jfif differ diff --git a/Images/The_first_hokage.jpg b/Images/The_first_hokage.jpg new file mode 100644 index 00000000..eaf9679f Binary files /dev/null and b/Images/The_first_hokage.jpg differ diff --git a/Images/Yamato.jpg b/Images/Yamato.jpg new file mode 100644 index 00000000..8c0f6c4f Binary files /dev/null and b/Images/Yamato.jpg differ diff --git a/Images/YoshinoNara.jfif b/Images/YoshinoNara.jfif new file mode 100644 index 00000000..9c18d762 Binary files /dev/null and b/Images/YoshinoNara.jfif differ diff --git a/Images/YugitoNii.jpg b/Images/YugitoNii.jpg new file mode 100644 index 00000000..ac6550d4 Binary files /dev/null and b/Images/YugitoNii.jpg differ diff --git a/Images/asura-path-pain.jpg b/Images/asura-path-pain.jpg new file mode 100644 index 00000000..2f5f28f7 Binary files /dev/null and b/Images/asura-path-pain.jpg differ diff --git a/Images/black zetsu.png b/Images/black zetsu.png new file mode 100644 index 00000000..78c9747f Binary files /dev/null and b/Images/black zetsu.png differ diff --git a/Images/chijoi_image.jpg b/Images/chijoi_image.jpg new file mode 100644 index 00000000..70fe7477 Binary files /dev/null and b/Images/chijoi_image.jpg differ diff --git a/Images/download.jfif b/Images/download.jfif new file mode 100644 index 00000000..127c42aa Binary files /dev/null and b/Images/download.jfif differ diff --git a/Images/ebiZoo.jpg b/Images/ebiZoo.jpg new file mode 100644 index 00000000..bdced238 Binary files /dev/null and b/Images/ebiZoo.jpg differ diff --git a/Images/ebisu.png b/Images/ebisu.png index 82a6c42f..7b71ce05 100644 Binary files a/Images/ebisu.png and b/Images/ebisu.png differ diff --git a/Images/ebizo.jpg b/Images/ebizo.jpg new file mode 100644 index 00000000..bdced238 Binary files /dev/null and b/Images/ebizo.jpg differ diff --git a/Images/eida.png b/Images/eida.png new file mode 100644 index 00000000..7ec905e6 Binary files /dev/null and b/Images/eida.png differ diff --git a/Images/fugaku.jpeg b/Images/fugaku.jpeg new file mode 100644 index 00000000..d557cbe7 Binary files /dev/null and b/Images/fugaku.jpeg differ diff --git a/Images/gekko.jpeg b/Images/gekko.jpeg new file mode 100644 index 00000000..4fdbee22 Binary files /dev/null and b/Images/gekko.jpeg differ diff --git a/Images/gold_silver_bros.png b/Images/gold_silver_bros.png new file mode 100644 index 00000000..a12ca60c Binary files /dev/null and b/Images/gold_silver_bros.png differ diff --git a/Images/hinata_hyuga.jpg b/Images/hinata_hyuga.jpg new file mode 100644 index 00000000..244cf33e Binary files /dev/null and b/Images/hinata_hyuga.jpg differ diff --git a/Images/ichiraku-ramen.jpeg b/Images/ichiraku-ramen.jpeg new file mode 100644 index 00000000..840206aa Binary files /dev/null and b/Images/ichiraku-ramen.jpeg differ diff --git a/Images/itachi uchiha the goat.jpeg b/Images/itachi uchiha the goat.jpeg deleted file mode 100644 index 9eca21cc..00000000 Binary files a/Images/itachi uchiha the goat.jpeg and /dev/null differ diff --git a/Images/itachi-uchiha-naruto.jpg b/Images/itachi-uchiha-naruto.jpg new file mode 100644 index 00000000..fbc56a3b Binary files /dev/null and b/Images/itachi-uchiha-naruto.jpg differ diff --git a/Images/itachi.jpg b/Images/itachi.jpg deleted file mode 100644 index 2e321caf..00000000 Binary files a/Images/itachi.jpg and /dev/null differ diff --git a/Images/itachi.png b/Images/itachi.png index 7694c8fb..ca5c4060 100644 Binary files a/Images/itachi.png and b/Images/itachi.png differ diff --git a/Images/itachi_uchiha.jpg b/Images/itachi_uchiha.jpg deleted file mode 100644 index 0e1cbc6e..00000000 Binary files a/Images/itachi_uchiha.jpg and /dev/null differ diff --git a/Images/kankuro.webp b/Images/kankuro.webp new file mode 100644 index 00000000..262ef7f9 Binary files /dev/null and b/Images/kankuro.webp differ diff --git a/Images/kawaki_img2.jpg b/Images/kawaki_img2.jpg new file mode 100644 index 00000000..5330aea9 Binary files /dev/null and b/Images/kawaki_img2.jpg differ diff --git a/Images/kisame.jpg b/Images/kisame.jpg new file mode 100644 index 00000000..9041d77e Binary files /dev/null and b/Images/kisame.jpg differ diff --git a/Images/kunai_cursor.png b/Images/kunai_cursor.png new file mode 100644 index 00000000..b1e98308 Binary files /dev/null and b/Images/kunai_cursor.png differ diff --git a/Images/kurama1.png b/Images/kurama1.png new file mode 100644 index 00000000..f09d40df Binary files /dev/null and b/Images/kurama1.png differ diff --git a/Images/kushina_uzumaki.jpg b/Images/kushina_uzumaki.jpg new file mode 100644 index 00000000..8a408cbc Binary files /dev/null and b/Images/kushina_uzumaki.jpg differ diff --git a/Images/madara.jpg b/Images/madara.jpg index 0b4307d4..8983f739 100644 Binary files a/Images/madara.jpg and b/Images/madara.jpg differ diff --git a/Images/mei.png b/Images/mei.png new file mode 100644 index 00000000..acc45ab2 Binary files /dev/null and b/Images/mei.png differ diff --git a/Images/naruto_ai.jpg b/Images/naruto_ai.jpg new file mode 100644 index 00000000..5e1aca34 Binary files /dev/null and b/Images/naruto_ai.jpg differ diff --git a/Images/neji-hyuga.jpg b/Images/neji-hyuga.jpg new file mode 100644 index 00000000..4886e659 Binary files /dev/null and b/Images/neji-hyuga.jpg differ diff --git a/Images/onoki.png b/Images/onoki.png new file mode 100644 index 00000000..664b418c Binary files /dev/null and b/Images/onoki.png differ diff --git a/Images/orochimaru.jpg b/Images/orochimaru.jpg new file mode 100644 index 00000000..979b919c Binary files /dev/null and b/Images/orochimaru.jpg differ diff --git a/Images/rocklee.jpg b/Images/rocklee.jpg new file mode 100644 index 00000000..505d7534 Binary files /dev/null and b/Images/rocklee.jpg differ diff --git a/Images/sasuke.jpg b/Images/sasuke.jpg new file mode 100644 index 00000000..112f28f4 Binary files /dev/null and b/Images/sasuke.jpg differ diff --git a/Images/sasuke_ai.jpg b/Images/sasuke_ai.jpg new file mode 100644 index 00000000..112f28f4 Binary files /dev/null and b/Images/sasuke_ai.jpg differ diff --git a/Images/shira.jpeg b/Images/shira.jpeg new file mode 100644 index 00000000..5da6c4df Binary files /dev/null and b/Images/shira.jpeg differ diff --git a/Images/sumire.jpg b/Images/sumire.jpg new file mode 100644 index 00000000..1a84d438 Binary files /dev/null and b/Images/sumire.jpg differ diff --git a/Images/tsuande.jfif b/Images/tsuande.jfif new file mode 100644 index 00000000..3066ce01 Binary files /dev/null and b/Images/tsuande.jfif differ diff --git a/Naruto-Shippuden b/Naruto-Shippuden deleted file mode 160000 index 5b67edc2..00000000 --- a/Naruto-Shippuden +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 5b67edc20b22507ebdd9a0f30d03c2e645b468c8 diff --git a/Princess Kasumi.jpg b/Princess Kasumi.jpg new file mode 100644 index 00000000..7de99570 Binary files /dev/null and b/Princess Kasumi.jpg differ diff --git a/README.md b/README.md index 78d53e65..faf87e7c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ logo -Hacktoberfest, in its 9th year, is a month-long celebration of open source software run by DigitalOcean. It is a great opportunity for everyone, from seasoned developers to students and code newbies, from technical writers to UX designers, to contribute to open source communities and develop your skills, with the perks of winning limited edition items. You can do this in a variety of ways: +Hacktoberfest, in its 10th year, is a month-long celebration of open source software run by DigitalOcean. It is a great opportunity for everyone, from seasoned developers to students and code newbies, from technical writers to UX designers, to contribute to open source communities and develop your skills, with the perks of winning limited edition items. You can do this in a variety of ways: * Prepare and share your project for collaboration * Contribute to the betterment of a project via pull requests @@ -15,7 +15,7 @@ Hacktoberfest, in its 9th year, is a month-long celebration of open source softw # Naruto-Shippuden series image -There is no doubt that most of our childhood was spent watching anime especially Naruto, we have seen and experienced it all. With Hacktoberfest 2022 coming up and being one of the people who would participate for the very first time, I decided to create this repository that's actually a very basic web-page that let the user view and add their favourite characters. +There is no doubt that most of our childhood was spent watching anime especially Naruto, we have seen and experienced it all. With Hacktoberfest 2023 coming up and being one of the people who would participate for the very first time, I decided to create this repository that's actually a very basic web-page that let the user view and add their favourite characters. You can find all types characters on https://www.giantbomb.com/naruto-uzumaki/3005-790/friends/ and on https://www.giantbomb.com/naruto-uzumaki/3005-790/enemies/ @@ -27,10 +27,10 @@ You can find all types characters on https://www.giantbomb.com/naruto-uzumaki/30 # What can you contribute? -There is always something to contribute to a project whether you are a novice or a veteran. In this project, you can add your favourite character as a card to the website! Or maybe you didn't like the line that you are reading right now and want to change that.Sure! Why not? +There is always something to contribute to a project whether you are a novice or a veteran. In this project, you can add your favourite character as a card to the website! Or maybe you didn't like the line that you are reading right now and want to change that. Sure! Why not? # How can you contribute? -To contribute in Hacktoberfest2022 , checkout the given link and win hactoberfest t-shirt ... +To contribute in Hacktoberfest2023 , checkout the given link and win hactobfest digital kits ... https://hacktoberfest.com/ @@ -43,22 +43,37 @@ Not everyone is aware of every tool present in the world no matter how easy or c Code - - -
-
-
- [name -
-
-
-

[name of character]

-

[Main description about character]

-

[some more description about character]

-
+ +
+
+
+

[name of character]

+ [name +
+
+

[Main description about character]

+

[some more description about character]

+
-
- + + + +
+
+
+

[name of character]

+ [name +
+
+

[Main description about character]

+

[some more description about character]

+
+
+
+ + +NOTE: add image to the Images folder if not present already and then provide the src in img tag. Copy this code and paste it in the index.html file to make your changes. Try and test it on your own system and then create a Pull request. You can adjust height of image of character so that it will fit in card. @@ -66,3 +81,10 @@ Copy this code and paste it in the index.html file to make your changes. Try and # Congratulations! Congratulation! You just made your first pull request and if it gets merged, you can view it using the Link provided above! + +# Our Amazing Contributors ⭐ + + + + + diff --git a/about.html b/about.html index 685c7046..724f5ab8 100644 --- a/about.html +++ b/about.html @@ -1,42 +1,98 @@ - - + - Naruto - + Naruto-About + + + + + - + +
+
+ - + + - + - - - + -
+
-
-
-