Posts

Showing posts from February, 2021

Learning HTML - Day 10

    Today is 01 February 2021 and it is my ninth day to learn HTML 🙋 Day 9 - Time 8.00 pm - 9.15 pm FORMS The < form >  element  is a container for different types of input  elements , such as: text fields, checkboxes, radio buttons, submit buttons, etc.  Here are the different input types we can use in HTML: <input type="button"> <input type="checkbox"> <input type="color"> <input type="date"> <input type="datetime-local"> <input type="email"> <input type="file"> <input type="hidden"> <input type="image"> <input type="month"> <input type="number"> <input type="password"> <input type="radio"> <input type="range"> <input type="reset"> <input type="search"> <input type="submit"> <input type="tel"> ...

Learning HTML - Day 9

Image
  Today is 01 February 2021 and it is my ninth day to learn HTML 🙋 Day 9 - Time 8.00 pm - 9.15 pm Continuation of Layout - On Day 8 learned about Layout using Float, today will learn Layout using other layout elements CSS Layout - covered in CSS HTML Block and Inline elements -  Block elements -  In  HTML  programming, a  block -level  element  is any  element  that starts a new line (e.g., paragraph) and uses the full width of the page or container . A  block -level  element  can take up one line or multiple lines and has a line break before and after the  element . Inline elements  are those which only occupy the space bounded by the tags defining the  element , instead of breaking the flow of the content. A block level element has a top and a bottom margin, whereas an inline element does not. Code of a block element -  <html> <head> <title>My webpage</title> </head> ...