Sie sind auf Seite 1von 12

Introduction

to
HTML
SectionHTML
1

HTML Tags

Hyper Text Markup Language


HTML Elements
Markup language
Notepad as Editor
Web Browsers

Page Structure
HTML

HTML Tags
Keywords (tag names) surrounded
HTML Elements by angle brackets <>
It normally come in pairs like <b>
Web Browsers and </b>

Page Structure
HTML

HTML Tags

<tagname>content</tagname>
HTML Elements

<b> This is a paragraph </b>


Web Browsers

Page Structure
HTML

HTML Tags
It is an individual component of
HTML Elements an HTML document.
It is everything from the start
Web Browsers tag to the end tag

Page Structure
HTML

HTML Tags

<p>This is a paragraph.</p>
HTML Elements

<b> This is a paragraph.</b>


Web Browsers

Page Structure
HTML

HTML Tags

Software Application
HTML Elements
Read HTML documents and display
them as web pages.
Web Browsers

Page Structure
HTML
<!DOCTYPE html>
<html>
HTML Tags
<body>

<h1>My First Heading</h1>


HTML Elements

<p>My first paragraph.</p>


Web Browsers

</body>
Page Structure
</html>
HTML

HTML Tags

HTML Elements

Web Browsers

Page Structure
HTML

The DOCTYPE declaration defines the document type to be HTML


HTML Tags The text between <html> and </html> describes an HTML document
The text between <head> and </head> provides information about the
document
HTML Elements The text between <title> and </title> provides a title for the document
The text between <body> and </body> describes the visible page content
The text between <h1> and </h1> describes a heading
Web Browsers The text between <p> and </p> describes paragraph

Page Structure
HTML Comment tags <!-- and --> are used to insert
comments in HTML.
<hr> tag creates a horizontal line in an HTML page
HTML Tags <br> inserts a single line break
<pre> defines pre-formatted text
<b> defines bold text
HTML Elements
<i> defines italic text
<a> define a link
Web Browsers <img> define images
<ul> define an unordered list
<ol> define an ordered list
Page Structure
<li> define a list item

Das könnte Ihnen auch gefallen