Skip to content

Latest commit

 

History

History
45 lines (34 loc) · 1.12 KB

README.md

File metadata and controls

45 lines (34 loc) · 1.12 KB

HTML introduction

The use of HTML

a markup language that is generally used to organize paragraphs, headings, and links on web pages

CSS

to organize the appearance of HTML elements. CSS can be used to change the color, size, and layout of HTML elements

Stucture basic of HTML

  1. DOCTYPE
    • to define the type or version of the HTML document
  2. html
    • to mark the beginning and end of the HTML document
  3. head
    • to hold non-visual elements of an HTML document
  4. body
    • to hold the visual elements of an HTML document

Elements used :

  1. img

to display the website image

  • src : for url image
  • alt : for image description
  • height : for change height of image
  • widht : for change widht of image
  1. a

for link it to website page

  • href : contains the url of the link destination
  1. h1, h2

serves to display the heading

  1. list
  • li, stores each list item
  • ol, Ordered List
  • ui, Unordered List

Insight

By utilizing every structure and element that exists, we can make the web look the way we want

ps

html usage is not included for our website domain