Posts

Showing posts from October, 2023

All of my learning link

Image
I save the link here on my blog for my remembrance and also whoever want to learn web development.  I believe it might be helpful for them if i can share this. if i get more i will add more for U & Me.           https://www.youtube.com/@freecodecamp           https://freecodecamp.org (Original Website)           https://reactnative.dev/

Clicke Me If You Love ! (Lesson)

  < html > < head > < title > Testing the Lesson </ title > < style > button { background-color : transparent ; border : 2px solid blue ; padding : 30px ; font-size : 2.0rem ; } button:hover { background-color : navy ; border : none ; color : white ; cursor : pointer ; } </ style > </ head > < body > < button > CLICK ME IF YOU LOVE </ button > < div class = " container" ></ div > < script > function onClickEvent () { const el = document . createElement ( 'p' ); el . innerText = 'I LOVE U' ; document . querySelector ( '.container' ). appendChild ( el ); }