1 / 5

HTML: Hypertext Markup Language

HTML: Hypertext Markup Language. The language to make web pages. HTML basics. HTML defines the structure of a web page Web browsers translate HTML and render the page Any text editor can be used to make web pages (e.g. Notepad, TextEdit ). Tags. Basic unit of HTML

donaldstacy
Download Presentation

HTML: Hypertext Markup Language

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. HTML: Hypertext Markup Language The language to make web pages

  2. HTML basics • HTML defines the structure of a web page • Web browsers translate HTML and render the page • Any text editor can be used to make web pages (e.g. Notepad, TextEdit)

  3. Tags • Basic unit of HTML • Often used in pairs: <p> </p> • Always use lower case • Common tags: • <html> </html> • <head> </head> • <title> </title> • <body> </body>

  4. A skeletal web page <html> <head> <title>Sample title</title> </head> <body> This is my web page. </body> </html>

  5. Some common tags • <p> </p> paragraph • <strong> </strong> strong text (often boldface) • <em> </em> emphasize (often italics) • <h1> </h1> header tag (up to <h6> </h6>) • <hr /> horizontal rule (no ending tag) • <br /> line break (no ending tag)

More Related