SlideShare a Scribd company logo
HTML & HTML5
–Wikipedia
“L'HTML non è un linguaggio di
programmazione, ma un linguaggio di
markup, ossia descrive le modalità di
impaginazione, formattazione e visualizzazione
grafica (layout) del contenuto, testuale e non,
di una pagina web”.
2
Linguaggio di marcatura
Struttura semantica
3
<p>…</p>
4
<p>Questo è un paragrafo.</p>
5
<p lang=“it”>Questo è un paragrafo.</p>
6
<p lang=“it”>Questo &egrave; un paragrafo.</p>
7
<br />
8
<br>
9
Struttura
Definizione e svolgimento
DTD
Ogni documento HTML deve averlo!

(Document Type Definition)
11
Il DTD è uno strumento utilizzato dai programmatori il
cui scopo è quello di definire le componenti ammesse
nella costruzione di un documento XML.
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!DOCTYPE html>
12
DTD
- set di elementi leciti da usare (vocabolario);
- struttura logica di ogni elemento (grammatica);
- attributi e valori ammessi;
- utilizzato dai parser.
13
<html lang=“it”>
</html>
<!DOCTYPE html>
<head></head>
<body></body>
14
All’interno del tag <head> troveremo:
- <title>Titolo della pagia</title>
- meta-dati per applicazioni esterne (es.: motori
di ricerca);
- collegamenti a file esterni (stili, script, ecc.);
- stili/script inline.
15
<html lang=“it”>
</html>
<!DOCTYPE html>
<head>
<body></body>
16
</head>
<title>Chi siamo</title>
<meta charset=“utf-8”>
All’interno del tag <body> troveremo tutta la parte
di front-end (interfaccia) del nostro sito.
!
Testo, multimedia, e tutto ciò che l’utente potrà
vedere si trova esclusivamente all’interno di
<body>.
17
18
<!DOCTYPE html>
<html>
<head>
<body>
Headings
Intestazioni
Sezioni principali di un testo.
!
Raggruppati in ordine di
importanza decrescente, da
<h1> a <h6>.
20
<h1>Ligula Commodo Fringilla.</h1>
<h2>Ligula Commodo Fringilla.</h2>
<h3>Ligula Commodo Fringilla.</h3>
<h4>Ligula Commodo Fringilla.</h4>
<h5>Ligula Commodo Fringilla.</h5>
<h6>Ligula Commodo Fringilla.</h6>
21
Deve esserci sempre e solo
un <h1> in ogni pagina.
22
Testo
Paragrafi e formattazioni
Testo
<p>Raxacoricofallapatorius, first mentioned in "World War
Three", is the home planet of the Raxacoricofallapatorians,
including the criminal Slitheen, Blathereen and Hostrazeen
families. The difficulty characters have in pronouncing its name
is a recurring joke in the show.</p>
<p>According to the book Monsters and Villains, the planet is a
paradise with burgundy seas and four polar regions.</p>
24
Testo
Raxacoricofallapatorius, first mentioned in "World War Three",
is the home planet of the Raxacoricofallapatorians, including
the criminal Slitheen, Blathereen and Hostrazeen families. The
difficulty characters have in pronouncing its name is a recurring
joke in the show.
!
According to the book Monsters and Villains, the planet is a
paradise with burgundy seas and four polar regions.
25
Testo
<p><strong>Raxacoricofallapatorius</strong>, first mentioned
in "World War Three", is the home planet of the
Raxacoricofallapatorians, including the criminal Slitheen,
Blathereen and Hostrazeen families. The difficulty characters
have in pronouncing its name is a recurring joke in the show.</
p>
<p>According to the book Monsters and Villains, the planet is a
paradise with burgundy seas and four polar regions.</p>
26
Testo
<p><strong>Raxacoricofallapatorius</strong>, first mentioned
in <em>"World War Three”</em>, is the home planet of the
Raxacoricofallapatorians, including the criminal Slitheen,
Blathereen and Hostrazeen families. The difficulty characters
have in pronouncing its name is a recurring joke in the show.</
p>
<p>According to the book <em>Monsters and Villains</em>, the
planet is a paradise with burgundy seas and four polar
regions.</p>
27
Testo
Raxacoricofallapatorius, first mentioned in "World War Three",
is the home planet of the Raxacoricofallapatorians, including
the criminal Slitheen, Blathereen and Hostrazeen families. The
difficulty characters have in pronouncing its name is a recurring
joke in the show.
!
According to the book Monsters and Villains, the planet is a
paradise with burgundy seas and four polar regions.
28
Testo
<p><strong>Raxacoricofallapatorius</strong>, first mentioned
in <em>"World War Three”</em>, is the home planet of the
Raxacoricofallapatorians, including the criminal Slitheen,
Blathereen and Hostrazeen families. <br />The difficulty
characters have in pronouncing its name is a recurring joke in
the show.</p>
<p>According to the book <em>Monsters and Villains</em>, the
planet is a paradise with burgundy seas and four polar
regions.</p>
29
Testo
Raxacoricofallapatorius, first mentioned in "World War Three",
is the home planet of the Raxacoricofallapatorians, including
the criminal Slitheen, Blathereen and Hostrazeen families.

The difficulty characters have in pronouncing its name is a
recurring joke in the show.
!
According to the book Monsters and Villains, the planet is a
paradise with burgundy seas and four polar regions.
30
Testo
- Apice|Pedice: <sup></sup>|<sub></sub>
- Linea orizzontale: <hr />
- Quotazione: <blockquote cite=“”></blockquote>
- Citazione: <cite></cite>
- Abbreviazione: <abbr title=“”></abbr>
- Indirizzo: <address></address>
31
Testo
- Testo incorretto: <s></s>
- Testo rimosso|Testo sostituito: <del></del>| <ins></ins>
- Blocco di codice: <code></code>|<kbd></kbd>|<samp></samp>
- Preformattato: <pre></pre>
- Definizione termine: <dfn></dfn>
- Marcatore generico: <span></span>
32
Liste
Ordinate, non-ordinare, di definizione
Liste
<ol>
<li>Sara-Jane Smith</li>
<li>Brigadier Lethbridge-Stewart</li>
<li>Bad Wolf</li>
<li>K-9</li>
<li>Captain Jack Harkness</li>
</ol>
34
Liste
1. Sara-Jane Smith
2. Brigadier Lethbridge-Stewart
3. Bad Wolf
4. K-9
5. Captain Jack Harkness
35
Liste
<ul>
<li>Sara-Jane Smith</li>
<li>Brigadier Lethbridge-Stewart</li>
<li>Bad Wolf</li>
<li>K-9</li>
<li>Captain Jack Harkness</li>
</ul>
36
Liste
• Sara-Jane Smith
• Brigadier Lethbridge-Stewart
• Bad Wolf
• K-9
• Captain Jack Harkness
37
Liste
<dl>
<dt>The Doctor</dt>
<dd>The Doctor is a Time Lord, an extraterrestrial from the
planet Gallifrey, who travels in a time machine called the
TARDIS. Sometimes he is accompanied by companions who have
chosen to travel with him for a variety of reasons.</dd>
<dt>Dalek</dt>
<dd>Iconic villain from the British TV series Dr Who. Though
their appearance is robotic, the Daleks are actually little green
blobs mutated from members of the Kaled species by their
chief scientist, Davros, and placed in robotic armoured travel
machines.</dd>
</dl>
38
Liste
The Doctor
The Doctor is a Time Lord, an extraterrestrial from the planet
Gallifrey, who travels in a time machine called the TARDIS.
Sometimes he is accompanied by companions who have
chosen to travel with him for a variety of reasons.
!
Dalek
Iconic villain from the British TV series Dr Who. Though their
appearance is robotic, the Daleks are actually little green
blobs mutated from members of the Kaled species by their
chief scientist, Davros, and placed in robotic armoured travel
machines.
39
Links
Ancore e collegamenti ipertestuali
Links
<a href=“tardis.html”>Go to the TARDIS</a>
41
Links
Go to the TARDIS
42
Links
<a href=“tardis.html”>Go to the TARDIS</a>
<a href=“http://www.unit.co.uk”>Visit UNIT HQ</a>
<a href=“mailto:master@time.com”>Mail to the Master</a>
<a href=“#cyberman”>Read about Cyberman</a>
43
Links
<a href=“tardis.html” target=“_blank”>Go to the TARDIS</a>
44
Links
<a href=“tardis.html” title=“Go to the TARDIS and escape from
Skaro.”>Go to the TARDIS</a>
45
Media
Immagini, video, audio e interattività
Media
<img src=“davros.jpg” />
47
Media
<img src=“davros.jpg” alt=“Image of Davros.” title=“The
creator of the Daleks, Davros.” />
48
Media
49
The creator of the Daleks, Davros.
Media
50
Image of Davros.
Media
<figure>
<img src=“davros.jpg” alt=“Image of Davros.” title=“The
creator of the Daleks, Davros.” />
</figure>
51
Media
<figure>
<img src=“davros.jpg” alt=“Image of Davros.” title=“The
creator of the Daleks, Davros.” />
<figcaption>Davros from Doctor Who, &copy; BBC</
figcaption>
</figure>
52
Media
53
Davros from Doctor Who, © BBC
Media
<video poster=“tardis_video_poster.jpg” controls autoplay
loop>
<source src=“dw_intro.mp4” type=“video/mp4” />
<source src=“dw_intro.ogg” type=“video/ogg” />
<source src=“dw_intro.webm” type=“video/webm” />
</video>
54
Media
<video poster=“tardis_video_poster.jpg” controls autoplay
loop>
<source src=“dw_intro.mp4” type=“video/mp4” />
<source src=“dw_intro.ogg” type=“video/ogg” />
<source src=“dw_intro.webm” type=“video/webm” />
<track kind=“subtitles” srclang=“it” src=“dw_intro_it.vtt” />
</video>
55
Media
<audio controls autoplay loop>
<source src=“dw_intro.mp3” type=“audio/mpeg” />
<source src=“dw_intro.ogg” type=“video/ogg” />
</audio>
56
Media
<canvas width=“” height=“” id=“”></canvas>
57
Contenitori
e contenitori semantici
Contenitori
<div>
<p>Time And Relative Dimentions In Space. A time/space
machine concieved by the Time Lords. It has infinate rooms
inside, including several console rooms, from which the ship
can be piloted.</p>
</div>
59
Contenitori
- Sezione: <section></section>
- Intestazione: <header></header>
- Articolo: <article></article>
- Footer: <footer></footer>
- Navigazione: <nav></nav>
- Barra laterale: <aside></aside>
60
Tabelle
Dati, non layout!
Tabelle
<table>
<tr>
<td>Daleks</td>
<td>Cyberman</td>
<td>Masters (The)</td>
</tr>
<tr>
<td>1963</td>
<td>1966</td>
<td>1971</td>
</tr>
<tr>
<td>2014</td>
<td>2013</td>
<td>2009</td>
</tr>
</table>
62
Tabelle
63
Daleks 1963 2014
Cyberman 1966 2013
Master (The) 1971 2009
Tabelle
<table>
<thead>
<tr>
<th>Viallain</th>
<th>First apperance</th>
<th>Last apperance</th>
</tr>
</thead>
<tr>
<td>Daleks</td>
<td>Cyberman</td>
<td>Masters (The)</td>
</tr>
</table>
64
Tabelle
65
Villain First apperance Last apperance
Daleks 1963 2014
Cyberman 1966 2013
Master (The) 1971 2009
Tabelle
<table>
<tr>
<td>2014</td>
<td>2013</td>
<td>2009</td>
</tr>
<tfoot>
<tr>
<td>Viallain</td>
<td>First apperance</td>
<td>Last apperance</td>
</tr>
</tfoot>
</table>
66
Tabelle
67
Daleks 1963 2014
Cyberman 1966 2013
Master (The) 1971 2009
Villain First apperance Last apperance
Forms
User Interaction
Forms
69
Forms
70
<form action=“” method=“get|post”>…</form>
Forms
71
<fieldset>
<legend>Contact information</legend>
</fieldset>
Forms
72
<label for=“name”>Nome</label>
Forms
73
<input type=“” id=“” name=“” />
!
<textarea id=“” name=“”></textarea>
!
<select id=“” name=“”>
<option value=“”>Option</option>
</select>
!
<button type=“”>Send</button>
Forms
74
http://www.w3schools.com/html/html5_form_input_types.asp
iFrames
Inline Frames
iFrames
76
<iframe width=“” height=“” src=“” scrolling=“”
frameborder=“”></iframe>
iFrames
77
<iframe src="https://www.google.com/maps/embed?pb=!
1m16!1m10!1m3!1d621.0341897165755!
2d-0.19329364309344388!3d51.49235780221063!2m1!3f0!3m2!
1i1024!2i768!4f13.1!3m3!1m2!1s0x48760f8b6737b9db
%3A0x8f5a4c580bbfd4d7!2sTARDIS!5e0!3m2!1sit!2sit!
4v1410612406742" width="600" height="450" frameborder="0"
style="border:0"></iframe>
iFrames
78
2014 Giovanni Buffa - CC by-nd 3.0

More Related Content

Viewers also liked

Applicazioni Windows Store con Kinect 2
Applicazioni Windows Store con Kinect 2 Applicazioni Windows Store con Kinect 2
Applicazioni Windows Store con Kinect 2
Massimo Bonanni
 
Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!
Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!
Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!
Massimo Bonanni
 
HTMLslide html
HTMLslide htmlHTMLslide html
HTMLslide html
ritalerede
 
Corso di HTML5 e CSS
Corso di HTML5 e CSSCorso di HTML5 e CSS
Corso di HTML5 e CSS
Salvatore Cordiano
 
HTML5 e Css3 - 1 | WebMaster & WebDesigner
HTML5 e Css3 - 1 | WebMaster & WebDesignerHTML5 e Css3 - 1 | WebMaster & WebDesigner
HTML5 e Css3 - 1 | WebMaster & WebDesigner
Matteo Magni
 
HTML5 e Css3 - 3 | WebMaster & WebDesigner
HTML5 e Css3 - 3 | WebMaster & WebDesignerHTML5 e Css3 - 3 | WebMaster & WebDesigner
HTML5 e Css3 - 3 | WebMaster & WebDesigner
Matteo Magni
 
Introduzione allo sviluppo UWP per xBox
Introduzione allo sviluppo UWP per xBoxIntroduzione allo sviluppo UWP per xBox
Introduzione allo sviluppo UWP per xBox
Massimo Bonanni
 
HTML - Primi Passi
HTML - Primi PassiHTML - Primi Passi
HTML - Primi Passi
Andrea Riezzo
 
Introduzione ai Sistemi Operativi
Introduzione ai Sistemi OperativiIntroduzione ai Sistemi Operativi
Introduzione ai Sistemi Operativi
orestJump
 
Php mysql3
Php mysql3Php mysql3
Php mysql3
orestJump
 
Guida introduttiva al css
Guida introduttiva al cssGuida introduttiva al css
Guida introduttiva al css
Enrico Mainero
 
Struttura di una pagina html
Struttura di una pagina htmlStruttura di una pagina html
Struttura di una pagina html
Enrico Mainero
 
HTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesignerHTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesigner
Matteo Magni
 
Html5 appunti.0
Html5   appunti.0Html5   appunti.0
Html5 appunti.0
orestJump
 
Tecnologie informatiche
Tecnologie informaticheTecnologie informatiche
Tecnologie informatiche
orestJump
 
HTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco Casario
HTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco CasarioHTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco Casario
HTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco Casario
Codemotion
 
Html e Css - 3 | WebMaster & WebDesigner
Html e Css - 3 | WebMaster & WebDesignerHtml e Css - 3 | WebMaster & WebDesigner
Html e Css - 3 | WebMaster & WebDesigner
Matteo Magni
 
Python - Primi passi
Python - Primi passi Python - Primi passi
Python - Primi passi
orestJump
 

Viewers also liked (19)

Applicazioni Windows Store con Kinect 2
Applicazioni Windows Store con Kinect 2 Applicazioni Windows Store con Kinect 2
Applicazioni Windows Store con Kinect 2
 
Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!
Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!
Windows Hello e Intel(r) RealSense(tm): attenti a questi due!!
 
HTMLslide html
HTMLslide htmlHTMLslide html
HTMLslide html
 
Corso di HTML5 e CSS
Corso di HTML5 e CSSCorso di HTML5 e CSS
Corso di HTML5 e CSS
 
Html5
Html5Html5
Html5
 
HTML5 e Css3 - 1 | WebMaster & WebDesigner
HTML5 e Css3 - 1 | WebMaster & WebDesignerHTML5 e Css3 - 1 | WebMaster & WebDesigner
HTML5 e Css3 - 1 | WebMaster & WebDesigner
 
HTML5 e Css3 - 3 | WebMaster & WebDesigner
HTML5 e Css3 - 3 | WebMaster & WebDesignerHTML5 e Css3 - 3 | WebMaster & WebDesigner
HTML5 e Css3 - 3 | WebMaster & WebDesigner
 
Introduzione allo sviluppo UWP per xBox
Introduzione allo sviluppo UWP per xBoxIntroduzione allo sviluppo UWP per xBox
Introduzione allo sviluppo UWP per xBox
 
HTML - Primi Passi
HTML - Primi PassiHTML - Primi Passi
HTML - Primi Passi
 
Introduzione ai Sistemi Operativi
Introduzione ai Sistemi OperativiIntroduzione ai Sistemi Operativi
Introduzione ai Sistemi Operativi
 
Php mysql3
Php mysql3Php mysql3
Php mysql3
 
Guida introduttiva al css
Guida introduttiva al cssGuida introduttiva al css
Guida introduttiva al css
 
Struttura di una pagina html
Struttura di una pagina htmlStruttura di una pagina html
Struttura di una pagina html
 
HTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesignerHTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesigner
 
Html5 appunti.0
Html5   appunti.0Html5   appunti.0
Html5 appunti.0
 
Tecnologie informatiche
Tecnologie informaticheTecnologie informatiche
Tecnologie informatiche
 
HTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco Casario
HTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco CasarioHTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco Casario
HTML5, CSS3 e JavaScript: Web app per tutti gli schermi by Marco Casario
 
Html e Css - 3 | WebMaster & WebDesigner
Html e Css - 3 | WebMaster & WebDesignerHtml e Css - 3 | WebMaster & WebDesigner
Html e Css - 3 | WebMaster & WebDesigner
 
Python - Primi passi
Python - Primi passi Python - Primi passi
Python - Primi passi
 

Similar to Laboratorio di Web Design Base - 2014/15 - HTML/5

Transformational Tricks for RDF.pptx
Transformational Tricks for RDF.pptxTransformational Tricks for RDF.pptx
Transformational Tricks for RDF.pptx
Kurt Cagle
 
Rdf In A Nutshell V1
Rdf In A Nutshell V1Rdf In A Nutshell V1
Rdf In A Nutshell V1
Fabien Gandon
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked Data
Gabriela Agustini
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
Gabriela Agustini
 
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
Fabien Gandon
 
Consuming linked data by machines
Consuming linked data by machinesConsuming linked data by machines
Consuming linked data by machines
Patrick Sinclair
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
Fabien Gandon
 
Persuasive Essay Examples 5Th Grade. Online assignment writing service.
Persuasive Essay Examples 5Th Grade. Online assignment writing service.Persuasive Essay Examples 5Th Grade. Online assignment writing service.
Persuasive Essay Examples 5Th Grade. Online assignment writing service.
Amanda Rose
 

Similar to Laboratorio di Web Design Base - 2014/15 - HTML/5 (8)

Transformational Tricks for RDF.pptx
Transformational Tricks for RDF.pptxTransformational Tricks for RDF.pptx
Transformational Tricks for RDF.pptx
 
Rdf In A Nutshell V1
Rdf In A Nutshell V1Rdf In A Nutshell V1
Rdf In A Nutshell V1
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic  Web and Linked DataAn introduction to Semantic  Web and Linked Data
An introduction to Semantic Web and Linked Data
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
 
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013W3C Tutorial on Semantic Web and Linked Data at WWW 2013
W3C Tutorial on Semantic Web and Linked Data at WWW 2013
 
Consuming linked data by machines
Consuming linked data by machinesConsuming linked data by machines
Consuming linked data by machines
 
An introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked DataAn introduction to Semantic Web and Linked Data
An introduction to Semantic Web and Linked Data
 
Persuasive Essay Examples 5Th Grade. Online assignment writing service.
Persuasive Essay Examples 5Th Grade. Online assignment writing service.Persuasive Essay Examples 5Th Grade. Online assignment writing service.
Persuasive Essay Examples 5Th Grade. Online assignment writing service.
 

More from Giovanni Buffa

Introduzioni ai services in Angular 4 e ad RxJS
Introduzioni ai services in Angular 4 e ad RxJSIntroduzioni ai services in Angular 4 e ad RxJS
Introduzioni ai services in Angular 4 e ad RxJS
Giovanni Buffa
 
Introduzione ai componenti in Angular 4
Introduzione ai componenti in Angular 4Introduzione ai componenti in Angular 4
Introduzione ai componenti in Angular 4
Giovanni Buffa
 
Introduzione ad Angular CLI
Introduzione ad Angular CLIIntroduzione ad Angular CLI
Introduzione ad Angular CLI
Giovanni Buffa
 
Introduzione ad ECMAScript 6 (ES6) e TypeScript
Introduzione ad ECMAScript 6 (ES6) e TypeScriptIntroduzione ad ECMAScript 6 (ES6) e TypeScript
Introduzione ad ECMAScript 6 (ES6) e TypeScript
Giovanni Buffa
 
15 concetti importanti su javascript
15 concetti importanti su javascript15 concetti importanti su javascript
15 concetti importanti su javascript
Giovanni Buffa
 
Angular 4 - convertire o migrare un'applicazione Angularjs
Angular 4 -  convertire o migrare un'applicazione AngularjsAngular 4 -  convertire o migrare un'applicazione Angularjs
Angular 4 - convertire o migrare un'applicazione Angularjs
Giovanni Buffa
 
Angular js o React? Spunti e idee per la scelta di un framework
Angular js o React? Spunti e idee per la scelta di un frameworkAngular js o React? Spunti e idee per la scelta di un framework
Angular js o React? Spunti e idee per la scelta di un framework
Giovanni Buffa
 
Introduzione a Drupal - Versione Italiana
Introduzione a Drupal - Versione ItalianaIntroduzione a Drupal - Versione Italiana
Introduzione a Drupal - Versione Italiana
Giovanni Buffa
 
Laboratorio di Web Design 2015/16 - Introduzione al corso
Laboratorio di Web Design 2015/16 - Introduzione al corsoLaboratorio di Web Design 2015/16 - Introduzione al corso
Laboratorio di Web Design 2015/16 - Introduzione al corso
Giovanni Buffa
 
Workshop Ideare e creare Web Applications, Introduzione ad AngularJS
Workshop Ideare e creare Web Applications, Introduzione ad AngularJSWorkshop Ideare e creare Web Applications, Introduzione ad AngularJS
Workshop Ideare e creare Web Applications, Introduzione ad AngularJS
Giovanni Buffa
 
Introduzione a JavaScript
Introduzione a JavaScriptIntroduzione a JavaScript
Introduzione a JavaScript
Giovanni Buffa
 
Introduzione a GIT - Laboratorio di Web Design 2014/15
Introduzione a GIT - Laboratorio di Web Design 2014/15Introduzione a GIT - Laboratorio di Web Design 2014/15
Introduzione a GIT - Laboratorio di Web Design 2014/15
Giovanni Buffa
 
Developing for Performances - Laboratorio di Web Design 2014/15
Developing for Performances - Laboratorio di Web Design 2014/15Developing for Performances - Laboratorio di Web Design 2014/15
Developing for Performances - Laboratorio di Web Design 2014/15
Giovanni Buffa
 
Responsive Web Design & Mobile
Responsive Web Design & MobileResponsive Web Design & Mobile
Responsive Web Design & Mobile
Giovanni Buffa
 
The CSS Survival Manual - Giovanni Buffa (2014)
The CSS Survival Manual - Giovanni Buffa (2014)The CSS Survival Manual - Giovanni Buffa (2014)
The CSS Survival Manual - Giovanni Buffa (2014)Giovanni Buffa
 
Introduzione al Theme Engin di Drupal 7
Introduzione al Theme Engin di Drupal 7Introduzione al Theme Engin di Drupal 7
Introduzione al Theme Engin di Drupal 7
Giovanni Buffa
 
Introduzione a Drupal 7 Entity
Introduzione a Drupal 7 EntityIntroduzione a Drupal 7 Entity
Introduzione a Drupal 7 Entity
Giovanni Buffa
 
SEO - Laboratorio di Web Design 2014/15
SEO - Laboratorio di Web Design 2014/15SEO - Laboratorio di Web Design 2014/15
SEO - Laboratorio di Web Design 2014/15
Giovanni Buffa
 
Introduzione a SASS - Laboratorio di Web Design 2014/15
Introduzione a SASS - Laboratorio di Web Design 2014/15Introduzione a SASS - Laboratorio di Web Design 2014/15
Introduzione a SASS - Laboratorio di Web Design 2014/15Giovanni Buffa
 
Introduzione a Drupal
Introduzione a DrupalIntroduzione a Drupal
Introduzione a Drupal
Giovanni Buffa
 

More from Giovanni Buffa (20)

Introduzioni ai services in Angular 4 e ad RxJS
Introduzioni ai services in Angular 4 e ad RxJSIntroduzioni ai services in Angular 4 e ad RxJS
Introduzioni ai services in Angular 4 e ad RxJS
 
Introduzione ai componenti in Angular 4
Introduzione ai componenti in Angular 4Introduzione ai componenti in Angular 4
Introduzione ai componenti in Angular 4
 
Introduzione ad Angular CLI
Introduzione ad Angular CLIIntroduzione ad Angular CLI
Introduzione ad Angular CLI
 
Introduzione ad ECMAScript 6 (ES6) e TypeScript
Introduzione ad ECMAScript 6 (ES6) e TypeScriptIntroduzione ad ECMAScript 6 (ES6) e TypeScript
Introduzione ad ECMAScript 6 (ES6) e TypeScript
 
15 concetti importanti su javascript
15 concetti importanti su javascript15 concetti importanti su javascript
15 concetti importanti su javascript
 
Angular 4 - convertire o migrare un'applicazione Angularjs
Angular 4 -  convertire o migrare un'applicazione AngularjsAngular 4 -  convertire o migrare un'applicazione Angularjs
Angular 4 - convertire o migrare un'applicazione Angularjs
 
Angular js o React? Spunti e idee per la scelta di un framework
Angular js o React? Spunti e idee per la scelta di un frameworkAngular js o React? Spunti e idee per la scelta di un framework
Angular js o React? Spunti e idee per la scelta di un framework
 
Introduzione a Drupal - Versione Italiana
Introduzione a Drupal - Versione ItalianaIntroduzione a Drupal - Versione Italiana
Introduzione a Drupal - Versione Italiana
 
Laboratorio di Web Design 2015/16 - Introduzione al corso
Laboratorio di Web Design 2015/16 - Introduzione al corsoLaboratorio di Web Design 2015/16 - Introduzione al corso
Laboratorio di Web Design 2015/16 - Introduzione al corso
 
Workshop Ideare e creare Web Applications, Introduzione ad AngularJS
Workshop Ideare e creare Web Applications, Introduzione ad AngularJSWorkshop Ideare e creare Web Applications, Introduzione ad AngularJS
Workshop Ideare e creare Web Applications, Introduzione ad AngularJS
 
Introduzione a JavaScript
Introduzione a JavaScriptIntroduzione a JavaScript
Introduzione a JavaScript
 
Introduzione a GIT - Laboratorio di Web Design 2014/15
Introduzione a GIT - Laboratorio di Web Design 2014/15Introduzione a GIT - Laboratorio di Web Design 2014/15
Introduzione a GIT - Laboratorio di Web Design 2014/15
 
Developing for Performances - Laboratorio di Web Design 2014/15
Developing for Performances - Laboratorio di Web Design 2014/15Developing for Performances - Laboratorio di Web Design 2014/15
Developing for Performances - Laboratorio di Web Design 2014/15
 
Responsive Web Design & Mobile
Responsive Web Design & MobileResponsive Web Design & Mobile
Responsive Web Design & Mobile
 
The CSS Survival Manual - Giovanni Buffa (2014)
The CSS Survival Manual - Giovanni Buffa (2014)The CSS Survival Manual - Giovanni Buffa (2014)
The CSS Survival Manual - Giovanni Buffa (2014)
 
Introduzione al Theme Engin di Drupal 7
Introduzione al Theme Engin di Drupal 7Introduzione al Theme Engin di Drupal 7
Introduzione al Theme Engin di Drupal 7
 
Introduzione a Drupal 7 Entity
Introduzione a Drupal 7 EntityIntroduzione a Drupal 7 Entity
Introduzione a Drupal 7 Entity
 
SEO - Laboratorio di Web Design 2014/15
SEO - Laboratorio di Web Design 2014/15SEO - Laboratorio di Web Design 2014/15
SEO - Laboratorio di Web Design 2014/15
 
Introduzione a SASS - Laboratorio di Web Design 2014/15
Introduzione a SASS - Laboratorio di Web Design 2014/15Introduzione a SASS - Laboratorio di Web Design 2014/15
Introduzione a SASS - Laboratorio di Web Design 2014/15
 
Introduzione a Drupal
Introduzione a DrupalIntroduzione a Drupal
Introduzione a Drupal
 

Recently uploaded

Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
NgcHiNguyn25
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
Priyankaranawat4
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
Celine George
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
WaniBasim
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Assessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptxAssessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptx
Kavitha Krishnan
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
mulvey2
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 

Recently uploaded (20)

Life upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for studentLife upper-Intermediate B2 Workbook for student
Life upper-Intermediate B2 Workbook for student
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
clinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdfclinical examination of hip joint (1).pdf
clinical examination of hip joint (1).pdf
 
How to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP ModuleHow to Add Chatter in the odoo 17 ERP Module
How to Add Chatter in the odoo 17 ERP Module
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
Liberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdfLiberal Approach to the Study of Indian Politics.pdf
Liberal Approach to the Study of Indian Politics.pdf
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Assessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptxAssessment and Planning in Educational technology.pptx
Assessment and Planning in Educational technology.pptx
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptxC1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
C1 Rubenstein AP HuG xxxxxxxxxxxxxx.pptx
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 

Laboratorio di Web Design Base - 2014/15 - HTML/5