SlideShare une entreprise Scribd logo
1  sur  79
Télécharger pour lire hors ligne
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

Contenu connexe

En vedette

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 htmlritalerede
 
HTML5 e Css3 - 1 | WebMaster & WebDesigner
HTML5 e Css3 - 1 | WebMaster & WebDesignerHTML5 e Css3 - 1 | WebMaster & WebDesigner
HTML5 e Css3 - 1 | WebMaster & WebDesignerMatteo Magni
 
HTML5 e Css3 - 3 | WebMaster & WebDesigner
HTML5 e Css3 - 3 | WebMaster & WebDesignerHTML5 e Css3 - 3 | WebMaster & WebDesigner
HTML5 e Css3 - 3 | WebMaster & WebDesignerMatteo Magni
 
Introduzione allo sviluppo UWP per xBox
Introduzione allo sviluppo UWP per xBoxIntroduzione allo sviluppo UWP per xBox
Introduzione allo sviluppo UWP per xBoxMassimo Bonanni
 
Introduzione ai Sistemi Operativi
Introduzione ai Sistemi OperativiIntroduzione ai Sistemi Operativi
Introduzione ai Sistemi OperativiorestJump
 
Guida introduttiva al css
Guida introduttiva al cssGuida introduttiva al css
Guida introduttiva al cssEnrico Mainero
 
Struttura di una pagina html
Struttura di una pagina htmlStruttura di una pagina html
Struttura di una pagina htmlEnrico Mainero
 
HTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesignerHTML5 e Css3 - 4 | WebMaster & WebDesigner
HTML5 e Css3 - 4 | WebMaster & WebDesignerMatteo Magni
 
Html5 appunti.0
Html5   appunti.0Html5   appunti.0
Html5 appunti.0orestJump
 
Tecnologie informatiche
Tecnologie informaticheTecnologie informatiche
Tecnologie informaticheorestJump
 
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 CasarioCodemotion
 
Html e Css - 3 | WebMaster & WebDesigner
Html e Css - 3 | WebMaster & WebDesignerHtml e Css - 3 | WebMaster & WebDesigner
Html e Css - 3 | WebMaster & WebDesignerMatteo Magni
 
Python - Primi passi
Python - Primi passi Python - Primi passi
Python - Primi passi orestJump
 

En vedette (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
 

Similaire à 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.pptxKurt Cagle
 
Rdf In A Nutshell V1
Rdf In A Nutshell V1Rdf In A Nutshell V1
Rdf In A Nutshell V1Fabien 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 DataGabriela 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 2013Fabien 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 DataGabriela Agustini
 
Consuming linked data by machines
Consuming linked data by machinesConsuming linked data by machines
Consuming linked data by machinesPatrick 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 DataFabien 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
 

Similaire à 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
 
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
 
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
 
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.
 

Plus de 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 RxJSGiovanni Buffa
 
Introduzione ai componenti in Angular 4
Introduzione ai componenti in Angular 4Introduzione ai componenti in Angular 4
Introduzione ai componenti in Angular 4Giovanni Buffa
 
Introduzione ad Angular CLI
Introduzione ad Angular CLIIntroduzione ad Angular CLI
Introduzione ad Angular CLIGiovanni 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 TypeScriptGiovanni Buffa
 
15 concetti importanti su javascript
15 concetti importanti su javascript15 concetti importanti su javascript
15 concetti importanti su javascriptGiovanni 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 AngularjsGiovanni 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 frameworkGiovanni Buffa
 
Introduzione a Drupal - Versione Italiana
Introduzione a Drupal - Versione ItalianaIntroduzione a Drupal - Versione Italiana
Introduzione a Drupal - Versione ItalianaGiovanni 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 corsoGiovanni 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 AngularJSGiovanni Buffa
 
Introduzione a JavaScript
Introduzione a JavaScriptIntroduzione a JavaScript
Introduzione a JavaScriptGiovanni 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/15Giovanni 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/15Giovanni Buffa
 
Responsive Web Design & Mobile
Responsive Web Design & MobileResponsive Web Design & Mobile
Responsive Web Design & MobileGiovanni 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 7Giovanni Buffa
 
Introduzione a Drupal 7 Entity
Introduzione a Drupal 7 EntityIntroduzione a Drupal 7 Entity
Introduzione a Drupal 7 EntityGiovanni 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/15Giovanni 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
 

Plus de 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
 

Dernier

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...Pooja Nehwal
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxGaneshChakor2
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...anjaliyadav012327
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxShobhayan Kirtania
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Dernier (20)

SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...Russian Call Girls in Andheri Airport Mumbai WhatsApp  9167673311 💞 Full Nigh...
Russian Call Girls in Andheri Airport Mumbai WhatsApp 9167673311 💞 Full Nigh...
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
CARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptxCARE OF CHILD IN INCUBATOR..........pptx
CARE OF CHILD IN INCUBATOR..........pptx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
JAPAN: ORGANISATION OF PMDA, PHARMACEUTICAL LAWS & REGULATIONS, TYPES OF REGI...
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
The byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptxThe byproduct of sericulture in different industries.pptx
The byproduct of sericulture in different industries.pptx
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

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