1 / 6

HTML

HTML. Hyper-Text Mark-Up Language. HTML - Caratteristiche generali . HTML = Hyper-Text Mark-Up Language Linguaggio che permette di definire il contenuto ed il layout di una pagina Web Non è un linguaggio di programmazione! E’ un linguaggio interpretato dal browser.

maisie
Télécharger la présentation

HTML

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 Hyper-Text Mark-Up Language

  2. HTML - Caratteristiche generali • HTML = Hyper-Text Mark-Up Language • Linguaggio che permette di definire il contenuto ed il layout di una pagina Web • Non è un linguaggio di programmazione! • E’ un linguaggio interpretato dal browser Alice Pavarani

  3. HTML - le pagine Web • Documenti di testo con estensione .html esempio • Il codice HTML è “in chiaro” Pagina Web Alice Pavarani

  4. Software di sviluppo • Un qualsiasieditor di testo (anche Blocco Note!) • Sono più comodi gli editor WYSIWYG (WhatYouSeeIsWhatYouGet”) • Di editor per la creazione di pagine Web in HTML ce ne sono a milioni! (sia a pagamento che gratuiti) Alice Pavarani

  5. Struttura di una pagina HTML • Le parti fondamentali (e sempre necessarie) sono 3: • Intestazione: <!doctype html> • Header: <head> </head> • Body: <body> </body> • Headere Body sono compresi nel tag<html> </html> aperto immediatamente dopo l’intestazione e chiuso come ultima riga del codice Alice Pavarani

  6. Struttura di una pagina HTML • Le parti fondamentali (e sempre necessarie) sono 3: • Intestazione: <!doctype html> • Header: <head> </head> • Body: <body> </body> • Headere Body sono compresi nel tag<html> </html> aperto immediatamente dopo l’intestazione e chiuso come ultima riga del codice <!doctype html> <html> <head> … </head> <body> … </body> </html> Alice Pavarani

More Related