Home » ATTRIBUTI Lezione HTML/CSS (2)

ATTRIBUTI Lezione HTML/CSS (2)

  • stefano 

Attributi

<tag attributo = “valore”> contenuto random </tag> 

 esercizio: 
 - <a href="www.Zavagliando.it"> un sito bellissimo </a>
 - <img src"Zavagliando.png”>  

Links

<a href = ”www.google.com”> cerca su google </a>

www.google.com” <– è un link tag  

Immagini

<img src=”ubriaco.png“> 

Tabelle

 <table></table>    <-- tabella
 <tr></tr>          <-- riga
 <td></td>          <-- casella
 border             <-- attributo bordi
 <th></th>          <-- titolo
 width              <-- attributo larghezza
 height             <-- attributo altezza
 alt                <-- attributo specificazione  

link utili: W3Schools

Skill