Posts

PricingCard Code Challenge (CSS)

Join our community 30-day, hassle-free money back guarantee Gain access to our full library of tutorials along with expert code reviews. Perfect for any developers who are serious about honing their skills. Monthly Subscription $29 per month Full access for less than $1 a day Sign Up Why Us Tutorials by industry experts Peer & expert code review Coding exercises Access to our GitHub repos Community forum Flashcard decks New videos every week

Testing the Embed video from Youtube (Project 1)

Image
Embedded YouTube Video My lovely Hobby is always Learning, testing new things.

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;