HTML Stands for Hypertext Markup Language is used to create webpages and websites, It is the most widely used language to write Web Pages. As its name suggests, HTML is a markup language. HTML is easy to learn and implement your ideas. HTML is full of tags and without CSS HTML is nothing. HTML is nothing more than well structured content. Try to learn HTML with Cascading Style Sheet(CSS). You can build html coding with any type of text editors.
Basic understaning is requred on internet browsing using a browser like Internet Explorer, Firefox, Chrome etc.
Originally, HTML was developed or invented with the intent of defining the structure of documents or pages like headings, paragraphs, tables, lists, and so forth to facilitate the sharing of scientific information between researchers.
The requirement to learn html is only two things you need to have: 1) Simple Text Editor, 2) Web Browser
<head> --- </head> - Opening and Ending tag for the head of the document.
The following optional tags can be placed inside the head.
<title>Sample Title</title> - Page title (You can find this on tab).
<link ...> - Relationships for the document(you can styles,scripts etc): common attributes are rel, rev, href.
<meta ...> - you can give page description, and keyworks about the websites or current page contents.
<style type="text/css">---</style> - You can specify Cascading style sheets here. you can write css coding for your html selectors.
<script type="text/javascript">---</script> - Here you can specify javascript functionalities.
<body>---</body> - This is the main body of the document.
<img src="URL" attributes> - you can palce an inline image into the document.
<marquee attributes>---</marquee> - you can Place a scrolling text marquee into the document.
<applet attributes>---</applet> - you can insert a Java applet in the HTML document.
<embed attributes>---</embed> - you can insert an embedded multimedia object, such as a sound file or video, into the page.
<a href="#">---</a> - Anchor is most important one. you can add html link here and it will redirect to other websites.
<ol>...</ol> - Ordered list puts the enclosed items marked with <li>, in a numbered list.
<ul>...</ul> - Unordered list puts the enclosed items marked with <li>, in a bulleted list.
<table></table> - Inside the table tag you can add a table with rows and cloumns.
Basic understaning is requred on internet browsing using a browser like Internet Explorer, Firefox, Chrome etc.
Originally, HTML was developed or invented with the intent of defining the structure of documents or pages like headings, paragraphs, tables, lists, and so forth to facilitate the sharing of scientific information between researchers.
The requirement to learn html is only two things you need to have: 1) Simple Text Editor, 2) Web Browser
Header Elements
<head> --- </head> - Opening and Ending tag for the head of the document.
The following optional tags can be placed inside the head.
<title>Sample Title</title> - Page title (You can find this on tab).
<link ...> - Relationships for the document(you can styles,scripts etc): common attributes are rel, rev, href.
<meta ...> - you can give page description, and keyworks about the websites or current page contents.
<style type="text/css">---</style> - You can specify Cascading style sheets here. you can write css coding for your html selectors.
<script type="text/javascript">---</script> - Here you can specify javascript functionalities.
Body Elements
<body>---</body> - This is the main body of the document.
<img src="URL" attributes> - you can palce an inline image into the document.
<marquee attributes>---</marquee> - you can Place a scrolling text marquee into the document.
<applet attributes>---</applet> - you can insert a Java applet in the HTML document.
<embed attributes>---</embed> - you can insert an embedded multimedia object, such as a sound file or video, into the page.
<a href="#">---</a> - Anchor is most important one. you can add html link here and it will redirect to other websites.
<ol>...</ol> - Ordered list puts the enclosed items marked with <li>, in a numbered list.
<ul>...</ul> - Unordered list puts the enclosed items marked with <li>, in a bulleted list.
<table></table> - Inside the table tag you can add a table with rows and cloumns.