Basic Web Design Part 1

HTML

HTML stands for Hyper Text Markup Language. With HTML you can create your own Website. HTML is very easy to learn. HTML describes the structure of a Web page. A markup language is a set of markup tags and the tags describe document content. HTML consists of a series of elements. HTML elements tell the browser how to display the content.

10 Basic HTML Elements

1. <html> - Defines an HTML document

2. <head> - Contains metadata/information for the document

3. <title> - Defines a title for the document

4. <body> - Defines the document's body

5. <h1>....<h6> - Defines HTML headings

6. <p> - Defines a paragraph

7. <a> - Defines a hyperlink

8. <img> - Defines an image

9. <table> - Defines a table

10. <frame> - Defines a window (a frame) in a frameset



Comments

Popular posts from this blog

Visual Basic 6.0 Part 1

C Programming Language Part 1