[HTML] [tag] <h1> – <h6>

<h1><h6> (tag HTML) formattano il testo in titoli (heading) di varie dimensioni, dal rango più grande (<h1>) al più piccolo (<h6>).

attributi

speciali

Nessuno.

globali
Caricamento…

scheda tecnica

– Categoria: contenuto flusso, visibile
– Tipo: blocco
– Intefraccia DOM: HTMLHeadingElement
– Supporto browser: totale

Sintassi

<h1>[testo]</h1>
<h2>[testo]</h2>
<h3>[testo]</h3>
<h4>[testo]</h4>
<h5>[testo]</h5>
<h6>[testo]</h6>

Default CSS

h1, h2, h3, h4, h5, h6 { 
  display: block;
  margin-left: 0;
  margin-right: 0;
  font-weight: bold;
}
h1 { 
  font-size: 2em;
  margin-top: 0.67em;
  margin-bottom: 0.67em;
}
h2 { 
  font-size: 1.5em;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
}
h3 { 
  font-size: 1.17em;
  margin-top: 1em;
  margin-bottom: 1em;
}
h4 { 
  font-size: 1em;
  margin-top: 1.33em;
  margin-bottom: 1.33em;
}
h5 { 
  font-size: .83em;
  margin-top: 1.67em;
  margin-bottom: 1.67em;
}
h6 { 
  font-size: .67em;
  margin-top: 2.33em;
  margin-bottom: 2.33em;
}

Esempio

<h1>Titolo 1</h1>
<h2>Titolo 2</h2>
<h3>Titolo 3</h3>
<h4>Titolo 4</h4>
<h5>Titolo 5</h5>
<h6>Titolo 6</h6>

Titolo 1

Titolo 2

Titolo 3

Titolo 4

Titolo 5
Titolo 6

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

html, tag html

Related Articles

0 Comment

Rispondi