All Website's have main parts that make up the structure of the page.
A interpreter translates the page code from human readable code to code the computer can understand and turn into a beautiful webpage you can read and interact with.
Head -- Where you put important details of the page like title description, ect.
Body -- This is where you can design the look and fel of the webpage.
Footer -- The footer contains information like copyright, contacts,related document... moreAll Website's have main parts that make up the structure of the page.
A interpreter translates the page code from human readable code to code the computer can understand and turn into a beautiful webpage you can read and interact with.
Head -- Where you put important details of the page like title description, ect.
Body -- This is where you can design the look and fel of the webpage.
Footer -- The footer contains information like copyright, contacts,related document links,branding,social,ect.
Most tags used must have a opening and closing tag .
Tags can go inside other tags.
empty tags:
<Head></head>
<Body></Body>
<Footer></Footer>
simple actual used tags
<Head><title>Learn HTML</title></head>
<Body> Hi today we will be learning the basic structure of a webpage.</Body>