Morpheusweb.it - Risorse per webmaster: script, ASP.NET, C#, Visual Basic .Net, tutorial, asp, javascript, css, php, html, java, ADO, VBScript, forms, frames, Active Server Pages, Dynamic HTML, database, gratis per webmaster e webdesigner

tag <head>

tag <head>


Il tag <head> rappresenta la testa del documento, utilizzabile per inserire informazioni sulla pagina (che non verranno visualizzate dal browser), script e stili css
All'interno dell'head possiamo inserire esclusivamente i seguenti tag: <title>, <meta>, <link>, <script>, e <style>

Esempio

<html>
<head>
  <title>Morpheusweb.it</title>
  <meta name="description" content="Risorse per webmaster">
  <meta name="keywords" content="script, manuali, asp, javascript, css">
  <style type="text/css">
    body {background-color:#ffffcc ;color: #000000;}
    a {color: #0000ff; text-decoration: underline overline}
  </style>
  <script type = "text/javascript">
    window.onload = function(){alert('Ciao!');}
  </script>
</head>
<body>
</body>
</html>


Attributi

Attributo Descrizione
lang la lingua
profile una lista di url separati da virgola contenenti informazioni sulla pagina


Stampa la pagina


 

Inizio pagina

risorse per webmaster