annarita.colella@gmail.com
Do you Know the difference between
the Structure and the style of a web
page?
What exactly is the structure of a Web page?
In which languages
is information on
the Web formatted?
What are the principal web
languages?
HTML and JavaScript
CSS
PHP
What is the program
that translates web
languages into
information?
Mozilla
Opera
Explorer
Chrome
SafariBROWSER
What do you use to
create the structure
of a web page?
HTML stands for Hyper Text
Markup Language
HTML describes the structure
of Web pages using markup
HTML
WHAT DO YOU CALL
THE ELEMENTS OF THE
HTML
TAGS
HTML tags label pieces of
content such as "heading",
"paragraph", "table", and so on
Browsers do not display the
HTML tags, but use them to
render the content of the page
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
What DO YOU NEED
TO WRITE html
CODE?
Web pages can be created and
modified by using professional
HTML editors
For learning HTML you can use a
simple text editor like Notepad
(PC) or TextEdit (Mac)
HTML EDITORS
LET’S TRY TOGETHER WITH AN EXAMPLE
let’s use the w3schools
tutorial at home and then try to do
this exercise for homework:
- create an HTML page to introduce yourself
- use at least two headings, two paragraphS
and a comment

HTML language

  • 1.
  • 2.
    Do you Knowthe difference between the Structure and the style of a web page? What exactly is the structure of a Web page?
  • 3.
    In which languages isinformation on the Web formatted? What are the principal web languages? HTML and JavaScript CSS PHP
  • 4.
    What is theprogram that translates web languages into information? Mozilla Opera Explorer Chrome SafariBROWSER
  • 5.
    What do youuse to create the structure of a web page? HTML stands for Hyper Text Markup Language HTML describes the structure of Web pages using markup HTML
  • 6.
    WHAT DO YOUCALL THE ELEMENTS OF THE HTML TAGS HTML tags label pieces of content such as "heading", "paragraph", "table", and so on Browsers do not display the HTML tags, but use them to render the content of the page
  • 7.
    <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>MyFirst Heading</h1> <p>My first paragraph.</p> </body> </html>
  • 8.
    What DO YOUNEED TO WRITE html CODE? Web pages can be created and modified by using professional HTML editors For learning HTML you can use a simple text editor like Notepad (PC) or TextEdit (Mac) HTML EDITORS
  • 9.
    LET’S TRY TOGETHERWITH AN EXAMPLE
  • 10.
    let’s use thew3schools tutorial at home and then try to do this exercise for homework: - create an HTML page to introduce yourself - use at least two headings, two paragraphS and a comment