Home of web learners
www.webn3rd.com
Every language has some structure.
Html having a basic structure
This is basic structure of html:
<html><head><title>my website</title></head><body><p>My webpage</p></body></html>
Output:
My webpage
here you can see My webpage only in your browser,which comes from browser body
For html,at first you have to start with html tag,inside this you have your html code
html code is divided into two parts:head and body
Head code you can see in your browser body,its for having some special task like adding title or for favicon image
what is title or favicon?Inside body you have to write your code for browser body like showing a paragraph in browser body
webn3rd.com
About webn3rd