OneStopTesting.com - Testing EBooks, Tutorials, Articles, Jobs, Training Institutes etc.
OneStopGate.com - Gate EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopMBA.com - MBA EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopIAS.com - IAS EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopSAP.com - SAP EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
OneStopGRE.com - of GRE EBooks, Tutorials, Articles, FAQs, Jobs, Training Institutes etc.
Creating simple web page in HTML | Articles | Recent Articles | News Article | Interesting Articles | Technology Articles | Articles On Education | Articles On Corporate | Company Articles | College Articles | Articles on Recession
Home » Articles » Creating simple web page in HTML
Creating simple web page in HTML
Article Posted On Date : Thursday, March 22, 2012
Creating simple web page in HTML
Advertisements
In this article I will explain you simple tags used in HTML which helps you formatting your web page. <html> <head> <title> This is my first HTML page</title> </head> <body> This is my first HTML page. </body> </html> HTML Headings HTML headings are defined with the <h1> to <h6> tags. <h1> is write text in bigger in size and so on. Code <html> <head> <title>Heading tag in HTML page</title> </head> <body> <h1>This is written in heading1</h1> <h2>This is written in heading2</h1> <h3>This is written in heading3</h1> <h4>This is written in heading4</h1> <h5>This is written in heading5</h1> <h6>This is written in heading6</h1> </body> </html> Paragraph To create a paragraph we use the <p> and </p> tag Code <p>Some of the events you are about to see are dangerous. They are performed by expert. We urge you not to attempt to duplicate them. Please don' try at home. </p> Line Breaks To give line break we use the <br> tag. You can use multiple <br> tags to give more gaps between lines. Code My name is John<br> I live in United States<br> I am a student<b> Horizontal Rule To create a horizontal line on your page you use the <hr> tag. Code <html> <head> <title>Learning Horizontal Rule</title> </head> <body> <h1>This is a horizontal rule</h1> <hr size="3" color="red" width="950"> </body> </html> Note: You can set the size, color and width of the horizontal ruler with its attributes which are given in double quotes. Below is a list of few tags which I will explain with a help of small program.
Amazon.in Widgets