Showing posts with label Tags. Show all posts
Showing posts with label Tags. Show all posts

Saturday, October 19, 2013

Define head tag,title tag,base tag,meta tag,script tag and style tag.

Hey everyone,today we will learn about head tag,title tag,base tag,meta tag,script tag and style tag.

<head> This tag defines the information about the document.This tag is usually placed beneath the HTML tag at the beginning.

<title> This tag defines the title of a document which means if you want to give a title to your page which it should display in the tab of your browser then you can give a name to your page by using this tag just write <title>Name of the page</title>

<base> This tag defines a default address or a default target for all links on a page

<link> This tag defines the relationship between a document and an external resource,you can place a link on your page so that when one clicks on it the browser opens up new page.

<meta> This tag defines meta data about an HTML document.

<script> This tag defines a client-side script.

<style> This tag defines style information for a document,if you want to use cascading style sheets (CSS) in your website then you can do the styling by using the style tag.