How To Build Notes App Using HTML CSS and JavaScript

แชร์
ฝัง
  • เผยแพร่เมื่อ 1 ก.พ. 2025

ความคิดเห็น • 183

  • @islamicfinance001
    @islamicfinance001 ปีที่แล้ว +31

    ******* Attention ********
    Using the "let" keyword instead of "const" in declaring 'notes' is making a huge difference in the final outcome. SO, make sure to use the let keyword in declaring the notes variable!

  • @polimorphic13
    @polimorphic13 ปีที่แล้ว +12

    Thank you again! I've been the whole morning creating projects following your tutorials.

    • @GreatStackDev
      @GreatStackDev  ปีที่แล้ว +9

      Fantastic!

    • @Soulcode-k
      @Soulcode-k 2 หลายเดือนก่อน

      What r u doing now I am curious 😮?

  • @batuhanbayr7613
    @batuhanbayr7613 ปีที่แล้ว +3

    best teacher for juniors 💙

  • @Assassin52
    @Assassin52 3 หลายเดือนก่อน +4

    For avoiding localstorage problem you have to call showNotes function at the end of js code....

  • @icoLeRay
    @icoLeRay 4 หลายเดือนก่อน +1

    Going strong, watching one of these everyday. learning consistently as well!

    • @GreatStackDev
      @GreatStackDev  4 หลายเดือนก่อน

      Glad to hear that. Keep coding.😊

    • @ashwinkumar5726
      @ashwinkumar5726 4 หลายเดือนก่อน

      Inside input box we can delete all data including delete img @@GreatStackDev

  • @RodneySmurts
    @RodneySmurts หลายเดือนก่อน

    I like your Tutorials, you're make JavaScript easier.

  • @TaiwoRasidi-v5v
    @TaiwoRasidi-v5v 3 หลายเดือนก่อน

    With this your video, i believe that very soon i will be proud of this journey

  • @olawale11954
    @olawale11954 ปีที่แล้ว +4

    Thank you sir for the video. Have learnt alot from your videos

  • @Dev_Ribeiro
    @Dev_Ribeiro ปีที่แล้ว +6

    Great for learning how to use local storage and other things, congratulations for the video

  • @francesco.paletta
    @francesco.paletta ปีที่แล้ว +1

    Thank you for this tutorial! You explained that very well.

  • @islamicfinance001
    @islamicfinance001 ปีที่แล้ว +4

    @GreatStack, What is the necessity of the line 24 (i.e. notes = document.querySelectorAll(".input-box");) while the same thing is written in the line 3? Could you plz explain...

    • @bashcode6699
      @bashcode6699 10 หลายเดือนก่อน +1

      because let can be accessed in block scope separately, it cannot be globally accessed.

  • @ayushmanlimbu
    @ayushmanlimbu 11 หลายเดือนก่อน +3

    Quick Query. When we select the note the blinking line is not on the first line but its next to the delete icon. How to improve that?

    • @fahadullah1686
      @fahadullah1686 5 หลายเดือนก่อน

      Did you fix this error

    • @saadlasharii
      @saadlasharii 5 หลายเดือนก่อน

      same thoughts!

  • @bilbyplaisir9413
    @bilbyplaisir9413 ปีที่แล้ว +2

    Hi I can say since I followed you my skills are now increasing I like your videos so much but I wanted you to make a video about a working payment gateway thank you 🙏🙏👋👋

  • @javaProgrammer-i7z
    @javaProgrammer-i7z 16 วันที่ผ่านมา

    Thanks for giving me a new ideas

  • @Efizzy_brendan
    @Efizzy_brendan ปีที่แล้ว +1

    You did not work on the edit button? Assuming there's error and needed corrections 🤷🏻‍♀️
    Nice one boss

  • @ShimmerBodyCream
    @ShimmerBodyCream ปีที่แล้ว +1

    thank you! What a fantastic resource.

  • @Islamic_content92
    @Islamic_content92 ปีที่แล้ว

    Js tutorial banaye I want to learn JavaScript 👏👏👏👏jese basic js project wese hi js tutorial banaye

  • @franciskp9117
    @franciskp9117 ปีที่แล้ว +19

    One minor bug i've noticed is that we can delete the delete button from the webpage. If done, there is no way to delete that particular note.

    • @zombiear6147
      @zombiear6147 ปีที่แล้ว +3

      Yes I got that too, you can add the below code in the place of input section and the functionality of the backspace will be disabled when selecting all text :
      createBtn.addEventListener("click", () => {
      let inputBox = document.createElement("p");
      let img = document.createElement("img");
      inputBox.className = "input-box";
      inputBox.setAttribute("contenteditable", "true");
      img.src = "images/delete.png";
      img.addEventListener("mousedown", (event) => {
      event.stopPropagation();
      });
      inputBox.addEventListener("keydown", (event) => {
      if (event.key === "Backspace" && isCaretAtStart(inputBox)) {
      event.preventDefault();
      }
      });
      notesContainer.appendChild(inputBox).appendChild(img);
      });
      function isCaretAtStart(element) {
      const selection = window.getSelection();
      return selection.rangeCount > 0 && selection.getRangeAt(0).startOffset === 0;
      }

    • @franciskp9117
      @franciskp9117 ปีที่แล้ว

      @@zombiear6147 thanks bro

    • @DAGBEAVER1995
      @DAGBEAVER1995 ปีที่แล้ว

      @@zombiear6147 It seems to me, that making IMG element a sibling element with relative position fixed the problem. Also appending input-box element with IMG element, and deleting both at the same time

    • @Child_club
      @Child_club ปีที่แล้ว +4

      Instead of writing the lengthy code simply write contenteditable = "false" in IMG tag 😅

    • @svdden_strike
      @svdden_strike 9 หลายเดือนก่อน

      @@Child_clubI didn’t work

  • @Soulcode-k
    @Soulcode-k 2 หลายเดือนก่อน

    I have set on a journey to get a web dev job without a degree ask me time to time if it's done yet i will keep you updated pls wish me luck 😅

  • @vigneshnaik546
    @vigneshnaik546 ปีที่แล้ว +1

    Instead of create element in javascript we can use inseradjecent html this is easy way

  • @awmdanger9677
    @awmdanger9677 หลายเดือนก่อน +1

    Nice video

  • @utkarshpatidar167
    @utkarshpatidar167 ปีที่แล้ว +1

    if(localstorage issue){
    You need to replace that else if condition
    You can write -
    else if (e.target.classList.contains("input-box"))
    }

    • @wafs1393
      @wafs1393 ปีที่แล้ว

      Can you send me your source code, mine still doesnt work

    • @utkarshpatidar167
      @utkarshpatidar167 ปีที่แล้ว

      @@wafs1393 ok
      After few hour i will send it to you.

    • @wafs1393
      @wafs1393 ปีที่แล้ว

      @@utkarshpatidar167 ok I managed to fix the issue

    • @pain7359
      @pain7359 ปีที่แล้ว

      hi im new to js and i am really confused can you show me your code on this ? i dont know where should i put this

    • @sourav5736
      @sourav5736 8 หลายเดือนก่อน

      Thanks a lot broooo❤

  • @ritiksharma185
    @ritiksharma185 ปีที่แล้ว +10

    i don't where i code wrong but i write code like you but everything is working but the local storage save notes code not working can you help me please?

    • @viczav
      @viczav 9 หลายเดือนก่อน

      Did you fix it? Everything works perfectly but that feature, lol

    • @aurelgolemi3626
      @aurelgolemi3626 8 หลายเดือนก่อน

      I have a similar problem to which one note stays permanent without the delete button

    • @KardanKaaal
      @KardanKaaal 5 หลายเดือนก่อน +2

      check event listener of notes container wherr the 2nd else condition check whether e.target.tagName = "p"; or e.target.tagName="P";

    • @KardanKaaal
      @KardanKaaal 5 หลายเดือนก่อน

      ​@@aurelgolemi3626You deleted the delete button using backspace as it is inside P tag. The delete button should be outside of the P tag. You can check there is a cursor line if you mistakenly clicked there and press backspace then boom you delete your delete key. So better try to add that delete key outside of your oaragraph tag because we gave that paragraph tag to edit content using contenteditable=true.
      Try using your own idea to make that button stat outside of the p tag.

    • @ShubhamSharma-xn1tr
      @ShubhamSharma-xn1tr 5 หลายเดือนก่อน

      @@KardanKaaal thanks a lot
      it resolved

  • @alimulla4098
    @alimulla4098 ปีที่แล้ว +3

    Bring more projects for beginners sir😊

  • @bookreadershub1153
    @bookreadershub1153 ปีที่แล้ว

    better understanding of DOM manipulation

  • @ed_badilla
    @ed_badilla ปีที่แล้ว

    what can we use instead of document.execCommand("insertLineBreak"); as execCommand is deprecated ???
    thanks for you hard work!

    • @quinojuan2
      @quinojuan2 ปีที่แล้ว +3

      Question to ChatGPT or Bard. Your life will change

  • @abdiladifmohamud5957
    @abdiladifmohamud5957 ปีที่แล้ว +5

    Sir localstoarge is not working for me. How can I solve it? I have followed you step by step but am unsuccessful

    • @UchechukwuBenedict-s7s
      @UchechukwuBenedict-s7s ปีที่แล้ว

      Capitalize the “p” in row 28 …do it like this 👇🏼
      else if(e.target.tagName === “P”)

    • @sarthakgupta124
      @sarthakgupta124 ปีที่แล้ว

      You would've used const notes while declaring notes at the start of the js code instead of let. use let and it will work

  • @animemangagirl3420
    @animemangagirl3420 ปีที่แล้ว +2

    Amazing tutorial^^ that helped a lot.
    But... How can I do a like and dislike function that actually works on all comment's boxes??? @o@

    • @Nebelkehlchen
      @Nebelkehlchen ปีที่แล้ว

      I am trying to think about it,. For my understanding: 1 Button for all notes together or 1 Button for each individual note?

  • @realnatureloveradda1811
    @realnatureloveradda1811 11 หลายเดือนก่อน +4

    Sir why my local storage data not updating? Its deleted when i refresh the page.

    • @uggman9
      @uggman9 7 หลายเดือนก่อน

      im getting the same error

    • @princeadigwe3764
      @princeadigwe3764 5 หลายเดือนก่อน

      Here are my suggestions:
      1. Make sure you call the showNotes() function.
      Maybe you only defined it and did not call it.
      In the video, he calls showNotes() function immediately after defining it 👉 23:36
      2. Check your browser console to see if there are any error messages

  • @mdakhlasurrahmanrana7433
    @mdakhlasurrahmanrana7433 ปีที่แล้ว

    Hello Brother becous of i learn all new thing easily🙂If you don't mind make a video school management system in php plz🥺

  • @GRDipankar-kv6pu
    @GRDipankar-kv6pu 8 หลายเดือนก่อน +1

    Awesome

  • @satisfyingvideos2.016
    @satisfyingvideos2.016 11 หลายเดือนก่อน +1

    hi dear when we select all and enter backspace key the delete image that we put at the bottom also removed.....why?

    • @faizanfactsyt2212
      @faizanfactsyt2212 5 หลายเดือนก่อน

      because the image is also in the container and when you say remove the p tag in p tag there is also put the image aoutside of the container

  • @rahulshendre7089
    @rahulshendre7089 6 หลายเดือนก่อน

    done, thanks a lot

  • @sweetdevil3647
    @sweetdevil3647 ปีที่แล้ว +1

    It's An Amazing Project Sir, I've Been Following You For The Few Days. And It Is Quite Good To Following You. Sir There Is Small Issue In This Nots Website That The Cursor Is Starting From The Image Tag Not From Te Starting, So How To Fix It ? And Also While Selecting All Text Using CTRL + A The All The Text With The Image Also Get Selected And While Pressing Back Space It's Also Deleting The Img

    • @ballskin
      @ballskin ปีที่แล้ว

      that's one big film title

  • @amiralisalari6863
    @amiralisalari6863 6 หลายเดือนก่อน

    Thanks❤

  • @arjuno7058
    @arjuno7058 ปีที่แล้ว +1

    I followed all the instructions in the video everything works fine, but when I reload the browser the note disappear. And when I checked on the console it shows no errors. The storage doesn't work

    • @abhishekpandey9762
      @abhishekpandey9762 ปีที่แล้ว

      SAME PROBLEM bro

    • @bigneism
      @bigneism ปีที่แล้ว

      the p in
      else if(e.target.tagName === 'p')
      must be capitalized

    • @bigneism
      @bigneism ปีที่แล้ว

      @@abhishekpandey9762
      the p in
      else if(e.target.tagName === 'p')
      must be capitalized

    • @arjuno7058
      @arjuno7058 ปีที่แล้ว

      @@bigneism WOW...thanks a lot. It works 😃

    • @bigneism
      @bigneism ปีที่แล้ว

      @@arjuno7058 happy i could help

  • @Priya_SM-vx1mu
    @Priya_SM-vx1mu ปีที่แล้ว +1

    Why I couldn't store the data when I refresh the page.
    I have given the exact get, set Item still i couldn't store and show the data.

  • @kaleb823
    @kaleb823 ปีที่แล้ว +1

    can you help me Why the delete image is deleted by cursor.

  • @AVTerrorX
    @AVTerrorX ปีที่แล้ว +1

    When i added updateStorage function in createBtn section, it started to store and save the data. Till before, it wasn't storing anyting. How is this possible?

    • @mohammadayasha9499
      @mohammadayasha9499 ปีที่แล้ว

      beacuse we have to create element in local storage so that it can respond to any click events on notesContainer , i think .....

  • @Hybridham86
    @Hybridham86 ปีที่แล้ว +6

    Hi there could you please provide the source code ? I'd like to compare as my local storage isn't working. Thank you.

  • @Themescore
    @Themescore ปีที่แล้ว

    Make a video on permanent dark and light mode Website

  • @Kar98kMP40
    @Kar98kMP40 6 หลายเดือนก่อน

    is there a method to contain the notes a person writes inside the notes container coz its going out of the container
    box after reaching the end ?

    • @princeadigwe3764
      @princeadigwe3764 5 หลายเดือนก่อน

      Set this CSS property for the .input-box class, directly under the min-height property 👇
      height: auto;

  • @himanshushekatkar1410
    @himanshushekatkar1410 6 หลายเดือนก่อน +1

    how to deploy it as an application and responsive to operate from mobile device

  • @lexgim
    @lexgim 8 หลายเดือนก่อน +2

    if u use ctrl + a and delete u can delete the delete button lmaooo, how do i fix this?

    • @HakanLykiaDemir
      @HakanLykiaDemir 7 หลายเดือนก่อน +1

      notesContainer.addEventListener('click',function(e){
      if(e.target.tagName === 'IMG'){
      e.target.parentElement.remove();
      updateStorage()
      }else{
      notes = document.querySelectorAll('.input-box')
      notes.forEach(nt =>{
      nt.onkeyup = function(){
      updateStorage();
      }
      })
      }
      nt.querySelector('img').setAttribute('contenteditable', 'false'); //this line
      })
      If you add this line of code, you can make 'img' uneditable. it will not disappear when you do a Delete operation afterwards.

    • @lexgim
      @lexgim 7 หลายเดือนก่อน

      @@HakanLykiaDemir i'll try this, either way I love you

    • @saadlasharii
      @saadlasharii 5 หลายเดือนก่อน

      @@HakanLykiaDemir its not working for me even I exactly copied your code

  • @mdabu3331
    @mdabu3331 ปีที่แล้ว

    Nicee sir❤❤

  • @vedantzanjad
    @vedantzanjad ปีที่แล้ว

    Thank You

  • @Ali-none
    @Ali-none ปีที่แล้ว

    Thanks Bro.

  • @monk_widom
    @monk_widom ปีที่แล้ว +1

    Sir I use button instead delete icon
    But when I write something it will start writing inside the buttons not I p tag
    ......solve this

    • @shagunsrivastava2753
      @shagunsrivastava2753 8 หลายเดือนก่อน

      same problem, did you find the solution to it?

  • @purbayanghosh9950
    @purbayanghosh9950 ปีที่แล้ว

    Using contenteditable, true makes the delete image deletable. Problem is there in the code

    • @stackunderflow6167
      @stackunderflow6167 ปีที่แล้ว

      ah, you are right 😂 I'm wondering for minutes why my delete button is not showing. For now, I simply copy the delete button from another notes 😅😅 but how to actually solve it?

  • @Islamic_wisdom535
    @Islamic_wisdom535 ปีที่แล้ว +4

    Thanks for the wonderful tutorial ❤
    But when i completed this project , in the first notes box delete icon is not showing and i can't be able to remove first note box 😢😢
    What to do now ?!

    • @stackunderflow6167
      @stackunderflow6167 ปีที่แล้ว +1

      this also my problem. I realized from another comment that contenteditable = true makes the delete button also delete-able. So for now just copy the button from another notes 😂😂

  • @priyanshushekhar7548
    @priyanshushekhar7548 ปีที่แล้ว +1

    Why my local storage function not working.
    I tried so many times but my notes are not store in storage .
    Can you help me.

  • @zaidmalik1981
    @zaidmalik1981 3 หลายเดือนก่อน

    Sir I also used font-family Poppins but not seen in the results

  • @jayprakashyadab
    @jayprakashyadab 8 หลายเดือนก่อน

    how to add the functioloty drag and drop of notes ?

  • @anishhazra2204
    @anishhazra2204 ปีที่แล้ว

    sir react js ka bhi bano video please

  • @DruvAbhi
    @DruvAbhi 5 หลายเดือนก่อน

    why if i write someting on note thn i click enter for next line after that i click delete option it delets only single line

  • @ಜ್ಞಾನಭಂಡಾರ-ಲ7ಟ
    @ಜ್ಞಾನಭಂಡಾರ-ಲ7ಟ ปีที่แล้ว

    Nice

  • @shubhamrathod9249
    @shubhamrathod9249 8 หลายเดือนก่อน

    17:08

  • @MyGamingEra
    @MyGamingEra ปีที่แล้ว +7

    Local storage note working sir🥲

    • @ltzZara
      @ltzZara 6 หลายเดือนก่อน

      Same 😩😣😑

  • @TamirPhillips
    @TamirPhillips ปีที่แล้ว +1

    I don't see the images link in the description

  • @Practice_dsa_together
    @Practice_dsa_together 7 หลายเดือนก่อน

    if i use getelementsbyclassname insttead of queryselectorall with the else if e.target.tagname==p condition it doesnt work. Why so

  • @the_phoenix2768
    @the_phoenix2768 ปีที่แล้ว

    Hi i have followed what you did with the dustbin icon but after l place java script it disappears .can you help

  • @Dibyendu-dev
    @Dibyendu-dev ปีที่แล้ว

    nice

  • @AN-oq6fn
    @AN-oq6fn 4 หลายเดือนก่อน

    In input box cursor is not coming please help

  • @abdoulayebah2932
    @abdoulayebah2932 ปีที่แล้ว

    Where is the path to download the images for this project.

  • @rajuchaurasiya836
    @rajuchaurasiya836 27 วันที่ผ่านมา +1

    My not work please help me

  • @MalaikaKhan-i9g
    @MalaikaKhan-i9g หลายเดือนก่อน

    Why i can't write something on input field

  • @LiflaMary
    @LiflaMary 3 หลายเดือนก่อน

    if i reload the page datas are deleted.what is the reason?

    • @Nishav7Editz
      @Nishav7Editz 2 หลายเดือนก่อน

      U need to call shownotes( ) function at the end of the code

  • @bimokayoba
    @bimokayoba ปีที่แล้ว

    you can use this instead of create element
    addNoteBtn.addEventListener("click", () => {
    const newNoteHTML = '';
    noteContainer.insertAdjacentHTML("beforeend", newNoteHTML);
    // After adding the new note, update the 'notes' NodeList
    notes = document.querySelectorAll(".input");
    });

  • @technicalg6808
    @technicalg6808 5 หลายเดือนก่อน

    11:20

  • @TechWithVaibhavbelekar
    @TechWithVaibhavbelekar ปีที่แล้ว

    google drive not work properly. Image download problem.

  • @rakeshpandey6768
    @rakeshpandey6768 ปีที่แล้ว +1

    There is a problem with content editable as if user select all and delete the content in browser, delete button also gets deleted 😂😂

    • @salehabdullah-lt7fk
      @salehabdullah-lt7fk ปีที่แล้ว

      I noticed the same thing, do you know the solution to prevent this?

    • @17-4-4
      @17-4-4 ปีที่แล้ว

      did u find it?@@salehabdullah-lt7fk

  • @charonissimo7683
    @charonissimo7683 7 หลายเดือนก่อน

    Can somebody explain me, why the function preventDefault() is using? The Key "Enter worrks anyway! Also why preventing its function and writing the same function?

    • @saadlasharii
      @saadlasharii 5 หลายเดือนก่อน

      same thoughts!

  • @electroboyy2164
    @electroboyy2164 7 หลายเดือนก่อน +1

    can someone help me iam facing problem in this code iam unable to write or click on notes
    help

    • @AN-oq6fn
      @AN-oq6fn 4 หลายเดือนก่อน

      Same did u resolve this

    • @irinawilson3519
      @irinawilson3519 หลายเดือนก่อน

      write inputBox.ContentEditable = "true";

  • @namangyan7647
    @namangyan7647 ปีที่แล้ว

    this application does not work on android?

  • @emmanuelimwa2905
    @emmanuelimwa2905 ปีที่แล้ว

    would you please provide the link for downloading images.

  • @luckydotpro5533
    @luckydotpro5533 ปีที่แล้ว

    Show as about a video play using js

  • @incognito_user12
    @incognito_user12 6 หลายเดือนก่อน +1

    Your 20sec unstoppable ad traumatizing me 🥲

  • @syedsalmanali7359
    @syedsalmanali7359 ปีที่แล้ว

    there is held error in javascript 1st 5th line please tell me

  • @amalilmu3235
    @amalilmu3235 ปีที่แล้ว +1

    it's not working at my pc.

  • @anubratamallick5502
    @anubratamallick5502 ปีที่แล้ว

    10:14

  • @Juwonempire
    @Juwonempire ปีที่แล้ว +1

    Hello Sir, everything works perfectly as it show in the tutorial, but after deleting the note, I'm unable to add new note until i remove the showNotes() function.

  • @purplestar-t7n
    @purplestar-t7n ปีที่แล้ว

    what if the images are not showing

  • @muhammadanas5698
    @muhammadanas5698 4 หลายเดือนก่อน

    My function showNotes does not work when i refresh the page all notes are delete from the page someone help me to fix the problem 😔😔

  • @pain7359
    @pain7359 ปีที่แล้ว

    why is my local storage not working ? I'm new to programming i don't know much :(

  • @Kim-d2u
    @Kim-d2u ปีที่แล้ว

    I have a problem of addEventListener at 5th line of js. It says
    Uncaught TypeError: Cannot read properties of null (reading 'addEventListener')
    I've googled it but couldn't find any solutions. Can anyone help me with this

    • @quinojuan2
      @quinojuan2 ปีที่แล้ว

      share your code please

  • @esy2bear970
    @esy2bear970 ปีที่แล้ว

    18:33 i have problem that after i delete one note , i cant add new note anymore

  • @Apoorva_dhotre
    @Apoorva_dhotre 7 หลายเดือนก่อน

    Click button is not working sir

  • @lanalezhava-j1i
    @lanalezhava-j1i 12 วันที่ผ่านมา

    😘

  • @boluwatifedavid-q2g
    @boluwatifedavid-q2g ปีที่แล้ว

    mine isn't working when i click on it

  • @hiharajpoot314
    @hiharajpoot314 10 หลายเดือนก่อน

    mera create note open hi nhi ho rha why??

  • @srinithi9510
    @srinithi9510 ปีที่แล้ว

    in notes app how to give a link for map

  • @walidomar7758
    @walidomar7758 6 หลายเดือนก่อน +2

    when i want to save contant without deleting everything it didn't save anything so i used this code and it works fine with me if anyone face the same problem.
    else if (e.target.tagName === "P") {
    notes = document.querySelectorAll(".input-box");
    notes.forEach(nt => {
    nt.addEventListener("keyup", updateStorage);
    });
    }

  • @shifteditz06
    @shifteditz06 6 หลายเดือนก่อน

    Hey, can anyone help me. My text is not getting saved😭

  • @mitamodak495
    @mitamodak495 11 หลายเดือนก่อน

    You did not define the edit button

    • @deepdas7674
      @deepdas7674 10 หลายเดือนก่อน

      Do it yourself just targeting the element and change the attributes of content editable that's it

  • @CodeWithRingo
    @CodeWithRingo ปีที่แล้ว +1

    mine aint work

  • @ManasRanjanSahu
    @ManasRanjanSahu 7 หลายเดือนก่อน

    Localstorage not working

  • @coding-ka-badshah
    @coding-ka-badshah ปีที่แล้ว +4

    Make a full animated tekit booking website

  • @itspankajfun8857
    @itspankajfun8857 10 หลายเดือนก่อน

    not working this java code ples

  • @SiwaBayek
    @SiwaBayek ปีที่แล้ว

    pics folder is no available

  • @abhisaragarwal9084
    @abhisaragarwal9084 ปีที่แล้ว

    Hello sir I want to know how can I make a project section for my portfolio website I need a good card design where it would be responsive and the UI should also not be that bad