Tody i tell you
what is html and html,Attributes,Tags ,Files,
Firstly, HTML is short forHTML Files
Every web page is actually a HTML file. Each HTML file is just a plain-text file, but with a .html file extension instead of .txt, and is made up of many HTML tags as well as the content for a web page. A web site will often contain many html files that link to each other. You can edit HTML files with your favourite editor.HTML Tags
HTML tags are theNote that the closing tag has the same text as the opening tag, but has an additional forward-slash ( / ) character. I tend to interperet this as the "end" or "close" character.
There are some tags that are an exception to this rule, and where a closing tag is not required. The
Each HTML file must have the essential tags for it to be valid, so that web browsers can understand it and display it correctly. The rest of the HTML file can contain as little or as many tags as you want to display your content.
Tag Attributes
Attributes allow you to customise a tag, and are defined within the opening tag, for example: ... < /p >
Attributes are often assigned a value using the equals sign, such as
Example:
Below is a basic html document, containing all the essential tags. You can copy the code below, paste it into your editor, and save as mypage.html to start your own web page.< html >
< head >
< title >this is the title< /title >
< /head >
< body > this is everything that goes in the document!
< /body >
< /html >