Page 9 - HTML, PHP & MYSQL - La programmazione eb
P. 9
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01
Transitional//EN"
http://www.w3.org/TR/html4/loose.dtd> <html>
<head>
<title>Titolo della pagina...</title>
</head>
<body>
<!-- Questo è un commento! -->
</body>
Alcune considerazioni sul codice visto più sopra:
x L'intero documento (ad esclusione del DOCTYPE di cui
parleremo
approfonditamente nella prossima lezione) è racchiuso tra i
tag <html> e </html>;
Il documento si suddivide in due x
macro aree:
</html>
Come avrete già capito il simbolo / inserito prima del nome
del tag è utilizzato per la chiusura del tag stesso.
Ad esempio:
<html>
...
...
...
</html>
10