Posts

Square Root Calculator!

Square Root Calculator Square Root Calculator Calculate Square Root

Pick the secret present for each people by clicking

Lucky Draw Lucky Draw Click to find the winner 20 times

Source Code of my code challenge! (PR)

<html>     <head>         <title>My Code Challenge</title>         <h2>Welcome to my code Challenge</h2>         <main>             <section class="content">               <h2>Output</h2>               <div>                 <h3>Programmer memes</h3>                 <div class="meme-content">                                    </div>               </div>               <div>                 <h3>Tell me something funny!</h3>                 <div class="joke-content">                                    </div>               </div>               <div>                 <h3>Give me some wisdom...</h3>                 <div class="quote-content">                                    </div>               </div>               <div>                 <h3>I want a riddle!</h3>     

Code Challenge by Peter Rocker!

My Code Challenge Welcome to my code Challenge Output Programmer memes Tell me something funny! Give me some wisdom... I want a riddle! Actions Show a Meme Tell Me a Joke Random Quote Riddle me Reveal Riddle Answer Code challenge by @Peter Rocker

Creation of Something Crazy

 const htmlBody = document.querySelector('body'); const randonClickFunction = function() {     const colors = ["#002942", "#ff34ef", "red", "blue", "green", "purple", "gray"];     const randomIndex = Math.floor(Math.random() * colors.length);     const randomcolor = colors[randomIndex];     htmlBody.style.background = randomcolor;     console.log('The user clicked and set the color to' + randomcolor); } htmlBody.onclick = randonClickFunction;

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 ); }