Posts

Showing posts with the label Learning

My Project Site List (For Now)

https://peter4049.github.io/newsletter-sign-up-with-success-message-main/ https://peter4049.github.io/Article-preview-component/ https://peter4049.github.io/meet-landing-page/ https://peter4049.github.io/Four_Card_Feature/ https://peter4049.github.io/Product_Preview_Card/ https://peter4049.github.io/Recipe_Page/ https://peter4049.github.io/Blog_Card/ https://peter4049.github.io/QR_code/ https://peter4049.github.io/Pricing_Card/ https://peter4049.github.io/my_social_profile/ https://peter4049.github.io/my_cv_test/ https://peter4049.github.io/order_pickup_form/

My business card

Image
Nay (Peter) Ko Front-end Developer New York, NY 929-426-3435

Order Pickup Request Form

Order Pick Up Request Form Order Pickup Request Form P & L Cleaners Submit Pick Up Request

My Profile Card

Nay Peter Ko Frontend Developer Twitter Facebook Instagram Github Linkedin

5famous us-news (project)

Image
5 US News Company The 5 Famous US News Company Fox News Fox News Flash keeps you up to date on the news being made and opinions being given across all of Fox News' platforms. NBC News NBC is a major American commercial broadcasting company that has been the television component of NBCUniversal since 2004. NBCUniversal is owned by the Comcast Corporation. abc 7 "More Americans get their news from ABC News tha

Image Card (Sample)

Image
Bootstrap lesson Some quick example text to build on the card title and make up the bulk of the card's content. Some quick example text to build on the card title and make up the bulk of the card's content.

My Calculator Project

My Calculator Project My Calculator (Project)

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

Square Root Calculator!

Square Root Calculator Square Root Calculator Calculate Square Root

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

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