Skip to main content

Learn HTML fundamentals for beginners

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

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.

Popular posts from this blog

List of software companies in Chennai

List of software companies in Chennai India's Information technology is an industry consisting of IT services and business process outsourcing(BPO). In india information technology is playing an important role, IT sector in India is generating more than 3 million employment. IT & ITeS industry in India has grown enormously. Indian Information Technology has made a mark in the world. Many MNC's are started branches in Indian cities like Bangalore, Chennai, Delhi etc,. The below table shows you list of software companies in Chennai. 4i Apps Solutions Pvt Ltd http://www.4iapps.com Abra Technologies http://www.abratechnologies.com Accel Frontline Ltd http://www.accelfrontline.in Adrenalin eSystems Ltd http://www.myadrenalin.com Akmin Technologies Pvt Ltd http://www.akmin.com American Megatrends India Pvt Ltd http://www.amiindia.co.in Anantara Solutions Pvt Ltd http://www.anantsol.com Arrowpoint Technologies Pvt Ltd http://www.arrowpointtechn...

HTML Unorder list example for beginers

HTML Unorder list is very very important concept in html, with ul, li tags we can produce list of contents with css styles. In html unorder list is used for menus, navigation and some others designs. HTML Unorder list example : <html>   <head>     <title>Welcome to Fresherstarget</title>     </head>   <body>     <ul>       <li>First List</li>       <li>Second List</li>       <li>Third List</li>       <li>Fourth List</li>     </ul>   </body> </html> The above html unorder list example program is best one for beginers I hope it'll helpfull for you Thanks, If any doubts comment here..

How to use HTML textbox, buttons, checkbox and radio buttons ?

HTML is easy to learn here we are going to create textbox, buttons, checkbox and radio buttons for beginers. In Freshers Blog we gave many example for html programs. Generally textbox, buttons, checkboxs and radio buttons these components will help you to create interactive registration form. Example for textboxs, checkboxs bellow, <html>   <head>     <title>Welcome to Fresher Blog</title>     </head>   <body>     <input type="text" name="text1" ></input>     <input type="checkbox" name="checkbox1">Checkbox 1</input>     <input type="radio" value="Radio">Radio 1</input>     <input type="submit" value="Freshersblog"></input>   </body> </html> The above example beginners can learn html more quickly and easily. Thanks.