Images are very important part of website. Images add beauty to website as well as images depict complex concepts in a simple way. Images can drastically improve the design and the appearance of a web page. Adding images to an…
HTML Meta Tags
Html Meta Tags are used to provide Meta information about the document. Meta Information or Meta data are information about the data. There are a lot of meta tags in Html to specify a variety of information about the document…
HTML Comments
Comments are piece of codes that are ignored by all browsers. Actually you can’t call comments as codes because they are actually description, instructions or something else about the program. All programming languages have comments. Comments help you and others…
HTML Grouping Content
In Html you can group several contents together to make sections or subsections in a page. Grouping content makes it easier to manage the content. It is easier for both the programmer and readers as it looks good while we…
HTML Quotation
Quotation and Citations are used to quote something from another source or website. In this chapter we will see some Quotation and Citation elements available in Html. Short Quotations <q> is the tag used to create a short Quotation in…
HTML Phrase Tags
The phrase tag has been designed for special purposes but they are displayed in a similar way as other formatting tags like <b> <i> <pre> <tt> which you already seen in the previous chapter. Strong Text Strong text is used…
HTML Formatting
If you are familiar with word processor software like Microsoft word you may know the formatting options like Bold text, italic text, or underlined text etc. Similarly Html also has text formatting options. Html is not a software for word…
HTML Paragraph
The Html <p> tag is used to create paragraph in Html. <p> tag is the most simple and easily understood tag in Html. Example Html Display You cannot always make sure how browsers display html. Each browsers may display html…
HTML Heading
Html contain 6 heading tags. Heading tags are used to create headings in an Html document. Html headings are created using the tag from <h1>, <h2>, …., <h6>. <h1> tag is used to create the main heading or the most…
HTML Head and Body
The format of Html document is The html document starts with the Dctype declaration. We have already discussed about Dctype declaration. You can read it hear. Then comes the <html> tag. The complete html document is written inside the <html>…