Thursday, October 31, 2013

How to use a combobox in html form

Hey guys..so far we have learned how to add textboxes checkboxes,radiobuttons and buttons in a html form.. Today we will learn about combobox,what combobox is and why do we use it for. A combobox is a list which displays certain items,from that list you can select only one,a combo box opens a dropdown in which the list is...


Wednesday, October 30, 2013

How to add radio buttons in html form

Hey everyone,our topic for today is Radio Buttons. We will learn how to add radiobuttons in a form,the process is the same as we used in adding checkboxes and textboxes so you will fine it very easy. The purpose of using radio buttons is that if we want to give user an option to select one out of...


Tuesday, October 22, 2013

How to use checkboxes in html

Hey everyone how are you guys, so far we have learned about forms and how to create a form will textboxes and a button. Today we will learn to add checkboxes in a form. The reason for using a checkbox option in a form is if we want to select multiple items for example if we want to...


Monday, October 21, 2013

How to create an html form

Hey every one how are you.. Today we will learn about forms.A form in html has the same meaning as any form which you fill out on paper.You can create your forms for your website such as a registration form etc. To start with the basic you should know that the <form> tag is used to create an...


Saturday, October 19, 2013

How to create ordered list,unordered list and description list

Hey everyone.. The topic for today is HTML List.A list in HTML has the same meaning as any list of items etc. The 2 most common types of lists in HTML 1. Ordered 2. Unordered To start an ordered list we use the tag <ol> and then <li> tag to write the name of each item of the...


How to create tables in an HTML document.

Hey everyone how are you Today we will learn how to make tables in HTML. A table is made so that you can display your data in a format in rows and columns.Tables are defined by the <table> tag and inside this tag you can start making rows of the table. So lets get started,a table is divided...


how to align text by using CSS.

Hey everyone today we will learn how to align our text by using CSS. Let me explain what align means in HTML.If you want your heading to appear in the center of the page then you can write align="center" and your text will appear in the center,in the same way you can align your text on left and...


How to change the font-family, color, and font-size by using CSS.

Hey everyone,today we will learn how to change the font-family, color, and font-size by using css. This is as simple as simple to learn as it was to change the background color of the page. So let me give you a small piece of code in which you will see how we can change the or, and font-size...


How to change the background color

Hey everyone how are you all today Today we will learn about cascading style sheets (css),just the basics. What Cascading Style Sheets (CSS) is? It is a simple procedure for adding style for example fonts, colors, spacing to your Web documents.By using CSS you can change the font color font size,change the background color and do a lot...


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...


Monday, October 14, 2013

How to give font styles

Hey everyone how are you all today The topic for today is how can we change the font style? This is very very very simple guys you don't need to worry about it.After reading this post you all will be able to change font style like you do in your notepad etc. So the 5 main font styles...


Sunday, October 13, 2013

How to add an image.

Hey everyone how are you guy Our today's topic is adding images to your website.This is very very simple people,you can add as many images as you want to and they will appear perfectly and with the same picture quality as they are stored in your desktop.So lets get started with the code. <html> <body> <img src="car.jpg" width="100"...


Saturday, October 12, 2013

How to give hyperlink in html

Hey everyone our today's topic is the <a> tag. Q:What does <a> tag do? Ans: This tag is used for giving link,say for instance if you want to make a home page where you will write information about your website and you want to make another page for providing your contact information so that when the user clicks...


Friday, October 11, 2013

How to write paragraph in HTML

Hey everyone :) today we will be learning how to write content in your website.For example if you want to write a paragraph on your web page you can easily write one after you read this post :) So lets get started.In order to write a paragraph in HTML you just need to memorize this tag <p> :)...


Thursday, October 10, 2013

How to give headings in HTML

Hey everyone so far we have learned what html is what is the meaning of markup language and which editors can be used :) Now we will move on to our next step.Lets get started with the basics of HTML.I will start with very easy and simple examples so that you guys can easily understand and learn :)...


Editor

Now the question is where should i be writing my html code and how can i run it and see the output of my code :) So friends you can write the HTML code in your notepad.By using notepad you wont have to download any editor from the internet.All you need to do is type .The html code...


Introduction To HTML

Q: What does HTML stands for?  Ans: HTML stands for HyperText Markup Language. Q: What is HTML? Ans: HTML is a markup language used for creating the webpages.          By using HTML your website will look like a website instead of plain text.With HTML you          can:  Create titles,paras,subheadings & headings. Put...