Here is an introduction to HTML (Hyper Text Markup Language) which is developed by Tim Berners-Lee in 1990, HTML stands for as i wrote earlier Hyper Text Markup Language, the best thing to know about this language is that it helps you to create your electronic documents online, especially creates pages on world wide web that contain links called Hyperlinks to other pages.
Introduction to HTML
So here we have an introduction to HTML. Every web page you see on internet now a days, they all carry html language codes. Without HTML you can’t run a proper disciplined text on the page and it will be like plain text. So HTML helps you to format and show your text and images in an easy and perfect way. So here is an example of HTML code (tags).
<!DOCType HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”>
<html lang=”en”><head>
<title>Example page</title>
<meta http-equiv=”Content-Type” content=”text/html; charset=windows-1252″>
</head>
<body>
<h1>This is a heading</h1>
<p>This is an example of a basic HTML page.</p>
</body></html>
Output
This is a heading
This is an example of a basic HTML page.
For the Introduction of HTML above example will help you. So you can see the basic example above, it has some basic key points for making any webpage. The first line is DOCType line which describes what encoding the page uses. Next one is HTML tag begins letting the browser know that HTML code is being used until it is terminated at the end mean start with <HTML> and end with </HTML>, So the same rule apply to almost all of the other tags. Next HEAD section which carry the information about the page such as the title of the pages and some of the keywords describing the data on your website. So here comes the body section, whatever is in your body section is viewable on the browser. So all of the text and images or videos you see on a webpage is contained within the body tags <body> </body>.
HTML has some updates as well, with the passage of time there are many things being added to html tags. Some new tags are added and latest of the series is HTML5 which comes after HTML to HTML4. The new elements which are added are section, article, aside, header, hgroup, footer, nav, figure, figcaption, video, audio, track, embed, mark, progress, meter, time, ruby, rt, rp, bdi, wbr, canvas, command, details, datalist, keygen and output. So here are some new inputs types also add for form, which are tel, search, url, email, datetime, date, month, week, time, datetime-local, number, range and color.
Here we have some important HTML tags which we use while writing HTML codes.
Not only the new elements added to this language but there are some tags too which have been deleted from this language. So it was a little introduction of HTML with you i hope i will keep on bringing more useful info about Web Languages.
Introduction to HTML (Hyper Text Markup Language) For Beginners
0 comments:
Post a Comment