├── Contact
├── contact.js
├── contact.css
└── contact.html
├── aboutUs
├── aboutUs.js
├── aboutUs.css
└── aboutUs.html
├── imges
├── loading.png
├── scamer-1.png
├── monkey_img -1.png
├── logoImage
│ └── logo.png
└── investPhotos
│ ├── invest_photo-1.png
│ ├── invest_photo-2.png
│ ├── invest_photo-3.png
│ ├── invest_photo-4.png
│ ├── invest_photo-5.png
│ └── invest_photo-6.png
├── Donors
├── donors.css
├── donors.js
└── donors.html
├── Manga
├── manga.css
├── manga.js
└── manga.html
├── Subscribers
├── subscribers.css
├── subscribers.js
└── subscribers.html
├── style.css
├── main.js
└── index.html
/Contact/contact.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/aboutUs/aboutUs.js:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/imges/loading.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/loading.png
--------------------------------------------------------------------------------
/imges/scamer-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/scamer-1.png
--------------------------------------------------------------------------------
/imges/monkey_img -1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/monkey_img -1.png
--------------------------------------------------------------------------------
/imges/logoImage/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/logoImage/logo.png
--------------------------------------------------------------------------------
/imges/investPhotos/invest_photo-1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/investPhotos/invest_photo-1.png
--------------------------------------------------------------------------------
/imges/investPhotos/invest_photo-2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/investPhotos/invest_photo-2.png
--------------------------------------------------------------------------------
/imges/investPhotos/invest_photo-3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/investPhotos/invest_photo-3.png
--------------------------------------------------------------------------------
/imges/investPhotos/invest_photo-4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/investPhotos/invest_photo-4.png
--------------------------------------------------------------------------------
/imges/investPhotos/invest_photo-5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/investPhotos/invest_photo-5.png
--------------------------------------------------------------------------------
/imges/investPhotos/invest_photo-6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/NetanelYaso/anime-and-manga-website/HEAD/imges/investPhotos/invest_photo-6.png
--------------------------------------------------------------------------------
/Donors/donors.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-image: url("https://www.kolpaper.com/wp-content/uploads/2020/11/Luffy-One-Piece-Background.jpg");
3 | }
4 |
5 | #logo_img {
6 | width: 5vw;
7 | }
8 |
9 |
--------------------------------------------------------------------------------
/Manga/manga.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-image: url("https://www.kolpaper.com/wp-content/uploads/2020/11/Luffy-One-Piece-Background.jpg");
3 | background-size: cover;
4 |
5 | }
6 | #logo_img {
7 | width: 5vw;
8 | }
9 |
--------------------------------------------------------------------------------
/aboutUs/aboutUs.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-image: url("https://www.kolpaper.com/wp-content/uploads/2020/11/Luffy-One-Piece-Background.jpg");
3 | background-size: cover;
4 |
5 | }
6 | #logo_img {
7 | width: 5vw;
8 | }
9 |
--------------------------------------------------------------------------------
/Subscribers/subscribers.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-image: url("https://www.kolpaper.com/wp-content/uploads/2020/11/Luffy-One-Piece-Background.jpg");
3 | background-size: cover;
4 | }
5 | #logo_img {
6 | width: 5vw;
7 | }
8 | #loading_gif{
9 | width: 10vw;
10 | }
--------------------------------------------------------------------------------
/Contact/contact.css:
--------------------------------------------------------------------------------
1 | body{
2 | background-image: url("https://www.kolpaper.com/wp-content/uploads/2020/11/Luffy-One-Piece-Background.jpg");
3 | background-size: cover;
4 |
5 | }
6 | #logo_img {
7 | width: 5vw;
8 | }
9 |
10 | #signUp_btn{
11 | text-decoration: none;
12 | color: red;
13 | }
14 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-image: url("https://www.kolpaper.com/wp-content/uploads/2020/11/Luffy-One-Piece-Background.jpg");
3 | background-size: cover;
4 | }
5 | #home_img{
6 | width: 80vw;
7 | }
8 | #logo_img {
9 | width: 5vw;
10 | }
11 |
12 | .investImags {
13 | width: 10vw;
14 | }
15 |
16 | #carouselExampleControls {
17 | width: 55vw;
18 | }
19 |
20 | #Image_div{
21 | width: 30vw;
22 | }
23 |
24 | #arrow_img{
25 | width: 15vw;
26 | }
27 |
--------------------------------------------------------------------------------
/Subscribers/subscribers.js:
--------------------------------------------------------------------------------
1 | const WANTED_API = `https://api.fbi.gov/wanted/v1/list`;
2 |
3 | async function getWanted() {
4 | loader.innerHTML = `
`;
5 | try {
6 | return await fetch(WANTED_API).then(response => response.json());
7 |
8 | }
9 | catch (error) {
10 | console.log("error");
11 | }
12 | finally {
13 | loader.innerHTML = ""
14 | }
15 | }
16 |
17 | getWanted().then(res => console.log(res.items))
18 |
19 |
20 |
21 | function print() {
22 | getWanted().then(res =>
23 | res.items.forEach((item) => {
24 | my_div1.innerHTML += `
25 |
27 | Title: ${item.title}
29 |Aliases: ${item.aliases}
30 |Dates of birth: ${item.dates_of_birth_used}
31 |Description: ${item.description}
32 |Languages: ${item.languages}
33 |Nationality: ${item.nationality}
34 |Place of birth: ${item.place_of_birth}
35 |
`
26 | return await fetch('https://jikan1.p.rapidapi.com/manga/2/characters', options)
27 | .then(response => response.json())
28 | }
29 | catch (error) {
30 | console.log("err");
31 | }
32 | finally {
33 | loader.innerHTML = ``;
34 |
35 | }
36 | }
37 | getManga().then(response => console.log(response))
38 |
39 | function printMaga() {
40 | getManga()
41 | .then(res => {
42 | res.characters.forEach((element) => {
43 | manga_div.innerHTML += `
44 |
`
5 | try {
6 | return await fetch(USERS_API)
7 | .then(res => res.json())
8 | }
9 | catch (error) {
10 | console.log("error");
11 | }
12 | finally {
13 | loader.innerHTML = ``
14 | }
15 | }
16 |
17 | getUsers().then(response=>console.log(response))
18 |
19 | const usersArray = [
20 | "https://m.media-amazon.com/images/M/MV5BMTY4OTAxMjkxN15BMl5BanBnXkFtZTgwODg5MzYyMTE@._V1_UY1200_CR84,0,630,1200_AL_.jpg",
21 | "https://hips.hearstapps.com/hmg-prod/images/prince-harry-duke-of-sussex-visits-croke-park-home-of-news-photo-1658937573.jpg",
22 | "https://resizing.flixster.com/zopIntvwKGW7Q2i_JkdiF1DhCJM=/218x280/v2/https://flxt.tmsimg.com/assets/235135_v9_bb.jpg",
23 | "https://www.rollingstone.com/wp-content/uploads/2018/06/rs-3885-rectangle.jpg?resize=1800,1200&w=1800",
24 | "https://data.mothership.tools/mothershiptools-ukprod/wp-content/uploads/2018/11/chris-brown-square.jpg",
25 | "https://www.nme.com/wp-content/uploads/2022/02/rihanna-2000x1270-1.jpg",
26 | "https://imagez.tmz.com/image/72/4by3/2020/02/19/724de2994aaa45848243f45c900b8e4e_xl.jpg",
27 | "https://cdn.britannica.com/92/211792-050-E764F875/American-singer-Ariana-Grande-2018.jpg",
28 | "https://media1.popsugar-assets.com/files/thumbor/zan-t_Me63if8oqWYE9ENiPLlhA/0x224:2826x3050/fit-in/2048xorig/filters:format_auto-!!-:strip_icc-!!-/2020/02/11/894/n/1922398/87f6bb525e430e7bd44e40.22278576_/i/Drake.jpg",
29 | "https://www.biography.com/.image/t_share/MTM2OTI2NTY2Mjg5NTE2MTI5/justin_bieber_2015_photo_courtesy_dfree_shutterstock_348418241_croppedjpg.jpg",
30 | ]
31 |
32 | const namesArray = [
33 | "Kevin Hart",
34 | "Prince Harry",
35 | "Dwein Jonson(The Rock)",
36 | "Beyonce",
37 | "Chris Brown",
38 | "Rihhana",
39 | "Pop Smoke",
40 | "Ariana Grande",
41 | "Drake",
42 | "Jusin Biber",
43 |
44 | ]
45 | let counter1 = 0;
46 | let counter2 = 0
47 | function printUsers() {
48 | getUsers().then(res=>{
49 | res.forEach(user=>{
50 | usersDiv.innerHTML+= `
51 | Age: ${user.age}
56 |Email: ${user.email}
57 |Phone Number: ${user.phone}
58 |
`;
50 | try {
51 | return await fetch('https://top-anime.p.rapidapi.com/anime/3/5', options)
52 | .then(response => response.json())
53 | }
54 | catch (error) {
55 | console.log("err");
56 | }
57 | finally {
58 | // loader.innerHTML = ` `;
59 |
60 | }
61 | }
62 | getAnimeAndMangaApi().then(response => console.log(response));
63 |
64 | function printAnimeNews() {
65 | getAnimeAndMangaApi().then(res => {
66 | res.forEach(element => {
67 | console.log(element);
68 | animeNews.innerHTML += `
69 | Address: ${element.address}
74 |Title: ${element.title}
75 | Click Here 76 |
62 |
68 |
99 |
103 |
104 |
105 |
106 |
107 |
108 |
108 |