Posts

Showing posts from July, 2023

First wepage with HTML and Internal CSS

  <! DOCTYPE html > < html lang =" en "> < head >     < meta charset =" UTF-8 ">     < meta name =" viewport " content =" width=device-width, initial-scale=1.0 ">     < title > ICT Project </ title >     < link href =" https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@600&display=swap " rel =" stylesheet ">     < style >         * {             /* default page settings */             /* box-sizing: border-box; */             margin : 0px ;             padding : 0px ;         }         body {             /* background-color: gray; */             background-image : linear-gradient ( rgba ( 0 , 0 , 0 , 0.8 ), rgba ( 0 , ...

Html form source code + explaination

  27:  Code for basic HTML form: <! DOCTYPE html > < html >     < head >< title > Website </ title ></ head >     < body >         < form action ="">         < div >                 < label for =" fname "> First name: </ label >             < input type =" text " id =" fname " name =" fname " placeholder =" First " required >         </ div >         < br >         < div >             < label for =" lname "> Last name: </ label >             < input type =" text " name =" lname " id =" lname " placeholder =" Last " required >         </ div >         < br >   ...

3: HTML blog's visual content with source code

Image
  1: Text sizes Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 Heading 6 2: Hyperlink with hower text and open in new tab or same C++ 3: New page hyperlink and open in same or new tab HTML 4: Different text formating tags This is normal text This is centered text Ittalics Bold Big Small This is  Subscript  text This is  Superscript  text inserted deleted mark 5: Unorderes list: Things I like are: Macaroni Burgers Pizza Pizzas types are: Peperoni Cheese Fagita Crown 6: Ordered list: With numbers: First Second Third Fourth With Uppercase Alphabet First Second Third Fourth With Lowercase Alphabet First Second Third Fourth With Uppercase Roman First Second Third Fourth With Lowercase Roman First Second Third Fourth 7: Discription list: HTML: This adds structure CSS: This adds design Javascript: This adds fucntionality 8: Basic Table: 9: Table with design: Align center, table outines black, row 1 grey center aligned and height 50 row 2 lightgrey center aligned and...