The <head> tag and the <body> tag arethe two important tags used in HTML document. Both of them are essential in creating an HTML document.
HTML <head> Tag
The head element is a container for all head contents. Elements inside the <head> can include scripts, styles, title of the document, metadata, and more.
The following elements can go inside the head section :
<title>
<style>
<base>
<link>
<meta>
<script>
<noscript>
HTML...
Saturday, 29 November 2014
Wednesday, 26 November 2014
Introduction to CSS
CSS is used to control the style and layout of multiple web pages. It defines how to style HTML elements. An HTML element can be displayed with different styles using CSS.
CSS stands for Cascading Style Sheets.
CSS language are normally saved as external .css file. External style sheets helps you to change the appearance and layout of al the webpages using a single file. Therefore, using a CSS...
Saturday, 22 November 2014
HTML Know The Basics
HTML language have a pattern in which the content is edited. Everyone who codes in HTML language should follow the same principle provided by the HTML standards. HTML language consists of different sections in which each section is coded.
Here is a sample code written in HTML
<html>
<head>
Head of the document...
</head>
<body>
Body of the document...
</body>
</html>
HTML...
Monday, 17 November 2014
HTML5
HTML5 is the latest version of HTML language. HTML5 was created to replace HTML 4, XHTML, and the HTML DOM Level 2. It is the fifth standard of the HTML standard.
HTML5 is developed by the World Wide Web Consortium (W3C) and the Web Hypertext Application Technology Working Group (WHATWG). Before creating HTML5, WHATWG was working with web forms and applications and on the other hand. W3C was developing...
Sunday, 16 November 2014
What is HTML?
HTML is a most commonly used language for designing websites. Today HTML language is being taught at young age onwards. This language is user-friendly and efficient to use. It is very interesting and easy to learn.
HTML stands for Hyper Text Markup Language.
HTML language consist of a set of rules as to govern how the website looks. These set of rules is called as Tags. An HTML tag is used to...