Select Page

HTML Paragraphs

HTML Paragraphs The HTML <p> element defines a paragraph: Example : <html> <body> <p>This is a paragraph.</p> <p>This is a paragraph.</p> <p>This is a paragraph.</p> </body> </html> Output:   HTML...

HTML Text & Font

HTML Fonts The font-family property defines the font to be used for an HTML element: Example : <html> <body> <h1 style=”font-family:verdana;”>This is a heading</h1> <p style=”font-family:courier;”>This is a...

HTML Styles & Colors

HTML Styles Setting the style of an HTML element, can be done with the style attribute. The HTML style attribute has the following syntax:     Example : <html> <body> <p>I am normal</p> <p style=”color:red;”>I am...

HTML Basic

HTML Headings HTML headings are defined with the <h1> to <h6> tags. <h1> defines the most important heading. <h6> defines the least important heading: Example : <html> <body> <p>This is a my name paragraph.</p>...

HTML Introduction

What is HTML? HTML is the standard markup language for creating Web pages. HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML elements are the building blocks of HTML pages HTML elements are represented by tags HTML...