SlideShare uma empresa Scribd logo
1 de 79
Baixar para ler offline
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

Mais conteúdo relacionado

Destaque

Destaque (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
 

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

Semelhante a 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.
 

Mais de 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
 
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 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
Giovanni Buffa
 

Mais 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
 

Último

Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
AnaAcapella
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 

Último (20)

Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701ComPTIA Overview | Comptia Security+ Book SY0-701
ComPTIA Overview | Comptia Security+ Book SY0-701
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 

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