Skip to content

Commit

Permalink
Correzione slide
Browse files Browse the repository at this point in the history
  • Loading branch information
matteobaccan committed Nov 25, 2024
1 parent 568ce54 commit 91bab31
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions esercizi/14-img.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@

<img src="https://via.placeholder.com/400x200" alt="immagine">

<img alt="Gattino" src="xxx">

</body>

</html>
8 changes: 4 additions & 4 deletions slide/CorsoHTML.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Esempio minimo di pagina HTML

## HTML - Elementi - TAG

Le pagine HTML sono composte da una serie di elementi, chiamati TAG, formattatine nel seguente modo:
Le pagine HTML sono composte da una serie di elementi, chiamati TAG, formattate nel seguente modo:

```html
<nometag> contenuto </nometag>
Expand Down Expand Up @@ -641,7 +641,7 @@ Esterno: utilizzando un elemento \<link> per collegarsi a un file CSS esterno

```css
body {
background\-color: powderblue;
background-color: powderblue;
}

h1 {
Expand Down Expand Up @@ -722,7 +722,7 @@ __“nomeframe”__ Apre il documento in un determinato frame
## Link - esempi

```HTML
<iframe src="http://www.acmenovara.it" name="A">
<iframe src="https://www.acmenovara.it" name="A">
<p>ACME Novara</p>
</iframe>

Expand All @@ -734,7 +734,7 @@ __“nomeframe”__ Apre il documento in un determinato frame
<p>Google.it</p>
</iframe>

<a href="http://www.acmenovara.it" target="B">CAMBIO B</a>
<a href="https://www.acmenovara.it" target="B">CAMBIO B</a>
```

---
Expand Down

0 comments on commit 91bab31

Please sign in to comment.