Posts

SIGMA WEB DEV JAVASCRIPT CLASS NOTES:

  JavaScript Variables, Data Types & Objects | Sigma Web Development Course    - Tutorial  #55   console . log ( "Shivam" ) ; console . log ( "hey this is tutorial 55" ) ; let a = 6 ; // data type number ... let b = 5 ; // data type number ... let c = "Harry" ; // data type "string" = collection of characters ... // console.log(a + b + 8); // // using typeof operator // console.log(typeof a,typeof b,typeof c); let _a = "Shubham" ; // chalega // var 55a = "Rohan"; // nahi chalega // const a1 = 6; redefining const is not allowed // a1 = a1 + 2; // its not allowed {     let a = 66 ;     console . log ( a ) ; } console . log ( a ) ; let x = "Harry bhai" ; let y = 3.33 ; let z = 22 ; const p = true ; let q = undefined ; let r = null ; console . log ( x , y , z , p , q , r ) ; console . log ( typeof x , typeof y , typeof z , typeof p , typeof q , typeof r ) ; // console.log(typ...

LEARN WHAT MATTERS CLASS NOTES:

  LEARN WHAT MATTERS: HTML: HTML TOPICS: make html file ✅✅ make boilerplate code ✅✅ understanding tags ✅✅ understanding live-preview ✅✅ understanding h1-h6 ✅✅ understanding p ✅✅ understanding br ✅✅ understanding img ✅✅ understanding a ✅✅ understanding div ✅✅ understanding id ✅✅ understanding class ✅✅ 🎉 PRACTICE: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < title > Document </ title > </ head > < body > // opening tag     // h1 to h6 ...     < h1 > h1 </ h1 >     < h2 > h2 </ h2 >     < h3 > h3 </ h3 >     < h4 > h4 </ h4 >     < h5 > h5 </ h5 >     < h6 > h6 </ h6 >     // paragraphs ..     < p > Lorem ipsum,...
Image
 FULL FLAGED WEBSITE-1: WEBSITE: HTML-CODE: <! DOCTYPE html > < html lang = "en" > < head >     < meta charset = "UTF-8" >     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" >     < link rel = "stylesheet" href = "style.css" >     < title > Document </ title > </ head > < body >     < div id = "nav" >         < img src = "https://eiwgew27fhz.exactdn.com/wp-content/uploads/2023/02/logo-white.svg" alt = "" >         < h4 > TOPTRACER RANGE </ h4 >         < h4 > GOLF LESSONS </ h4 >         < h4 > ADVENTURE GOLF </ h4 >         < h4 > CAFE </ h4 >         < h4 > EVENTS </ h4 >     </ div >     < div id = "cursor" ><...