Buon giorno, ho cercato di fare da solo degli esercizi su tabelle ed elenchi.
Potete per favore correggerli?
Grazie mille!!!!
4. Scrivere il codice HTML per definire la struttura della seguente tabella
<html>
<head>
</head>
<body>
<table border = “border”>
<tr>
<th> </th>
<td rowspan = “2”> </td>
<th> </th>
</tr>
<tr>
<th> </th>
<th> </th>
</tr>
</table>
</body>
</html>
3. Creare un documento HTML che descriva il seguente elenco
• Spesa al Supermercato
1. Latte
2. Zucchero
3. Farina
• Spesa dal Cartolaio
1. Fogli protocollo
2. Matite
<htlm>
<head> <title> elenco </title>
</head>
<body>
<ul>
[*] <h3> Spesa al Supermercato </h3>
- <li latte
<li zucchero- farina
[*] <h3> Spesa dal cartolaio </h3>
[*] fogli protocollo
[*] matite
[/list]
[/list]
</body>
</html>
4. Scrivere il codice HTML per definire il struttura della seguente tabella.
<html>
<head>
</head>
<body>
<table border = “border”>
<tr>
<td rowspan = “2”> </td>
<th></th
<th> colspan = “3”> </th>
</tr>
<tr>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tr>
</table>
</body>
</html>
3. Creare un documento HTML che descriva il seguente elenco.
• Discipline scientifiche
1. matematica
2. fisica
• discipline letterarie
1. italiano
2. latino
3. filosofia
<html>
<head> <title> elenco </title>
</head>
<body>
<ul>
[*] Discipline scientifiche
- matematica
- fisica </li
[*] Discipline letterarie
- italiano
- latino
- filosofia
[/list]
<body/>
</html>
Creare un documento HTML che descriva il seguente elenco
1. Una ROM è una memoria:
A. Di lettura e scrittura
B. Di sola lettura
C. Volatile
2. Un kB equivale:
A. 1000 byte
B. 1024 byte
C. 0,1 MB
<html>
<head> <title> elenco </title>
</head>
<body>
<h3> elenco </h3>
[list=1]
[*] Una Rom è una memoria:[*]
- style = “list-style: upper-alpha”>
- di lettura e scrittura
- di sola lettura
- volatile
- Una kB equivale:
- 100 byte
- 1024 byte
- 0,1 MB
</body>
</html>