SlideShare a Scribd company logo
1 of 26
Download to read offline
SEE ICT - STARTIT CENTAR
HTML, CSS I JAVASCRIPT
WEB TEHNOLOGIJE
WEB TEHNOLOGIJE - UVOD
ZAŠTO WEB TEHNOLOGIJE?
▸ Popularnost - veliki broj uređaja je podržava
▸ Jednostavna za savlađivanje
▸ Dobar osnov za učenje programiranja
▸ Literatura je lako dostupna
▸ Upotrebna vrednost je ogromna!
WEB TEHNOLOGIJE - UVOD
ZADACI I PLAN KURSA
▸ Pravljenje stranice i kompletnog websitea!
▸ Upoznavanje sa principima programiranja
▸ Vežba kroz samostalni rad, domaće zadatke
▸ Mentorstvo i podrška - i povratna informacija polaznika
▸ Predavanja su interaktivna - pitanja su poželjna!
▸ Napredovanje u praktičnom znanju polaznika
WEB TEHNOLOGIJE - HTML
NASTANAK I RAZVOJ WEB-A
▸ Hipertekst - unapređenje statičkog teksta
▸ “Web” - engl. “Mreža” - najpopularnija verzija hiperteksta
▸ HTML deklarativni jezik i njegova evolucija
▸ Web browser - prikazuje web sadržaj
▸ Web aplikacije - napredni HTML
Web Sajtovi:
Web Aplikacije:
>> SVE OVO POKREĆE HTML! <<
WEB TEHNOLOGIJE - HTML
HTML OSNOVE
DISEKCIJA WEB PREZENTACIJE
Interaktivnost i animacija
Format i izgled strane
Sadržaj (tekst, slika, video)
HTML OSNOVE
JAVASCRIPT SLOJ - ANIMACIJA I INTERAKCIJA
HTML OSNOVE
CSS SLOJ - RASPORED I FORMAT ELEMENATA
HTML OSNOVE
HTML SLOJ - BAZA WEB STRANICE
POČINJEMO SA OTKRIVANJEM WEB-A!
HTML OSNOVE
HTML - TEKST “NA STEROIDIMA”


THE	LEAN	STARTUP



The	Lean	Startup	isn't	just	about	how	to	create	a	
more	successful	entrepreneurial	business	-	it’s	
about	what	we	can	learn	from	those	businesses	to	
improve	virtually	everything	we	do.	I	imagine	Lean	
Startup	principles	applied	to	government	programs,	
to	healthcare,	and	to	solving	the	world's	great	
problems.	
http://theleanstartup.com
HEADER PARAGRAPH
LINK


<h1>THE	LEAN	STARTUP</h1>



<p>The	Lean	Startup	isn't	just	about	how	to	create	
a	more	successful	entrepreneurial	business	-	it’s	
about	what	we	can	learn	from	those	businesses	to	
improve	virtually	everything	we	do.	I	imagine	Lean	
Startup	principles	applied	to	government	programs,	
to	healthcare,	and	to	solving	the	world's	great	
problems.</p>



<a	href=“http://theleanstartup.com”>http://theleanstartup.com</a>
HTML OSNOVE
HTML - TEKST “NA STEROIDIMA”
HEADER
PARAGRAPH
LINK
HTML OSNOVE
ELEMENTI HTML-A - ANALIZA
▸ TAG - gradivni element web stranice
▸ Izgled taga:
▸ Primeri tagova:



<	ključna	reč	>
<p>	
<h1>	
<div>	
<head>
HTML OSNOVE
HTML BLOKOVI - TAGOVI U PUNOJ SNAZI!
▸ HTML blok je sadržaj uokviren tagovima
▸ “Otvaranje” i “zatvaranje” taga - pravilo pisanja:







Primeri HTML blokova:



<p>Education	is	the	most	powerful	weapon	which	
you	can	use	to	change	the	world.</p>



<div><h1>The	Innovator’s	dilemma</h1></div>
<p>						</p>


<h1>THE	LEAN	STARTUP</h1>



<p>The	Lean	Startup	isn't	just	about	how	to	create	a	more	successful	
entrepreneurial	business	-	it’s	about	what	we	can	learn	from	those	businesses	
to	improve	virtually	everything	we	do.	I	imagine	Lean	Startup	principles	
applied	to	government	programs,	to	healthcare,	and	to	solving	the	world's	
great	problems.</p>



<a	href=“http://theleanstartup.com”>http://theleanstartup.com</a>
HTML OSNOVE
ČITAJU HTML KOD -> WEB STRANICA
HTML OSNOVE
ATRIBUTI HTML TAGOVA
▸ Tagovi imaju atribute koji ih bliže opisuju



Izgled atributa:





▸ Primeri tagova sa atributima:
<a	href=“http://theleanstartup.com”>
<img	src=“http://startit.rs/indjija.jpg”>
<meta	charset="UTF-8">
HTML OSNOVE
LINKOVANJE STRANICA: HTML HIPERTEKST!
▸ A HREF tag služi za linkovanje strana (Hiper REFerenca)
<a	href=“http://theleanstartup.com”>http://theleanstartup.com</a>
LINK TEKST KOJI SE PRIKAZUJE
<a	href=“http://theleanstartup.com”>Visit	Book	website</a>
<a	href=“http://startit.rs”>Za	sve	što	je	bitno	na	domaćoj	IT	sceni</a>
HTML OSNOVE
TAGOVI ZA PISANJE TEKSTA
▸ HEADER: H1, H2 . . . H6 - naslovi, deli dokument na celine
▸ PARAGRAPH: P - Deli tekst na pasuse

<h1>THE	LEAN	STARTUP</h1>

<h2>The	movement	that	is	trasforming	how	new	products	are	build	and	launched</h2>



<p>The	Lean	Startup	isn't	just	about	how	to	create	a	more	successful	entrepreneurial	busine
-	it’s	about	what	we	can	learn	from	those	businesses	to	improve	virtually	everything	we	do.
imagine	Lean	Startup	principles	applied	to	government	programs,	to	healthcare,	and	to	solvi
the	world's	great	problems.</p>



<a	href=“http://theleanstartup.com”>Lean	Startup	Website</a>
HTML OSNOVE
NAGLAŠAVANJE I FORMATIRANJE TEKSTA
▸ STRONG tag - za naglašavanje teksta



Primer:
 This	HTML	course	is	<strong>sooo	cool!</strong>
▸ BR tag - BReak: prelazak u novi red



Primer:
▸ HR tag - Horizontal Rule: jednostavno - horizontalna linija
<p>Ekonomija	bazirana	na	teškoj	industriji	je	stvar	prošlosti	–	osim	
u	Azijskim	zemljama.</p><br><br><br>

<p>Male	tehnološke	kompanije	koje	izvoze	svoje	usluge	na	globalno	
tržište	igraju	ključnu	ulogu	u	modernoj	ekonomiji.</p>
HTML OSNOVE
VEŽBA! NAPISATI SVOJ TEKST U HTML-U
scratchpad.io
TAGOVI: H1, H2,… H6, P, STRONG, BR,HR, A HREF
HTML OSNOVE
DODAVANJE SLIKA U HTML
Izvor: techcrunch.com


<p>This	year’s	Audience	Choice	at	Disrupt	SF	has	a	WHALE	of	a	
tale	to	tell	you.	Called	<a	href='http://
fishingbooker.com'>FishingBooker.com</a>,	this	Belgrade-based	
company	is	streamlining	the	process	of	booking	fishing	boats.	
Yes.	Really.</p>



<p>Founded	by	Vukan	Simic	and	Nemanja	Cerovac,	the	startup	
won	a	pitch-off	I	attended	in	Montenegro	this	year	and	came	
all	the	way	from	Serbia	to	hang	out	on	the	show	floor.	When	
they	heard	about	Audience	Choice	they	notified	everyone	in	
Belgrade	and	swept	the	voting	by	connecting	with	some	high-
profile	Serbian	tennis	players.	It’s	a	Cinderella	story	(with	
fish.)</p>
HTML OSNOVE
DODAVANJE SLIKA U HTML
<h1>FishingBooker	Helps	You	Book	Fishing	Trips</h1>

<img	src="https://tctechcrunch.files.com/shutterstock_1842.jpg">
HTML OSNOVE
DODAVANJE SLIKA U HTML
<img	src="https://tctechcrunch.files.com/shutterstock_1842.jpg">
IMG TAG SRC ATRIBUT
‣ IMG - IMaGe tag 

‣ SRC - SouRCe atribut - sadrži lokaciju slike

‣ Ne uokviruje sadržaj - nije potrebno da se tag “zatvori”
HTML OSNOVE
VEŽBA! DODATI SLIKU SVOM HTML-U
scratchpad.io
TAGOVI: H1, H2,… H6, P, STRONG, BR,HR, A HREF + IMG
HTML OSNOVE
REKAPITULACIJA PREDAVANJA I VEŽBE
▸ Nastanak web-a i HTML jezik kao stožer
▸ Tri sloja web-a: razlike između HTML-a, CSS-a i Javascript-a
▸ Tagovi - gradivni elementi HTML-a, konvencije za pisanje
▸ Tekst tagovi: H, P, STRONG, BR; link tag: A HREF
▸ Dodavanje slika - IMG tag
▸ Napravili smo svoj prvi sajt!!!
HTML OSNOVE
DOMAĆI ZADATAK
▸ Napisati svoj CV u HTML-u koristeći scratchpad.io koristeći
tagove: H1-H3, A, P, STRONG, IMG, HR, BR
▸ Pogledati sajt http://www.w3schools.com i upoznati se sa
drugim HTML tag-ovima
▸ Instalirati alat za pisanje HTML-a 

Sublime Text editor - http://www.sublimetext.com/
▸ Instalirati Slack aplikaciju na svoj telefon ili računar

HTML OSNOVE
HVALA VAM NA PAŽNJI!
PITANJA?

More Related Content

What's hot

Teams, styles and scalable applications
Teams, styles and scalable applicationsTeams, styles and scalable applications
Teams, styles and scalable applicationsVittorio Vittori
 
Front End Tooling and Performance - Codeaholics HK 2015
Front End Tooling and Performance - Codeaholics HK 2015Front End Tooling and Performance - Codeaholics HK 2015
Front End Tooling and Performance - Codeaholics HK 2015Holger Bartel
 
History of-christmas[1]
History of-christmas[1]History of-christmas[1]
History of-christmas[1]emelyn feto
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointSahil Gandhi
 
Beyond CSS Architecture
Beyond CSS ArchitectureBeyond CSS Architecture
Beyond CSS Architecture拓樹 谷
 
Web Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSWeb Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSBootstrap Creative
 
How to use CSS3 in WordPress
How to use CSS3 in WordPressHow to use CSS3 in WordPress
How to use CSS3 in WordPressSuzette Franck
 
Multimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioChristian Heilmann
 
光速テーマ開発のコツ
光速テーマ開発のコツ光速テーマ開発のコツ
光速テーマ開発のコツHishikawa Takuro
 
Modern Front-End Development
Modern Front-End DevelopmentModern Front-End Development
Modern Front-End Developmentmwrather
 
CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017
CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017
CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017Morten Rand-Hendriksen
 
CSS framework By Palash
CSS framework By PalashCSS framework By Palash
CSS framework By PalashPalashBajpai
 
Wordless, stop writing WordPress themes like it's 1998
Wordless, stop writing WordPress themes like it's 1998Wordless, stop writing WordPress themes like it's 1998
Wordless, stop writing WordPress themes like it's 1998Filippo Dino
 
6 Steps to Make Your CSS Code More Maintainable
6 Steps to Make Your CSS Code More Maintainable6 Steps to Make Your CSS Code More Maintainable
6 Steps to Make Your CSS Code More Maintainable10Clouds
 

What's hot (20)

Teams, styles and scalable applications
Teams, styles and scalable applicationsTeams, styles and scalable applications
Teams, styles and scalable applications
 
Front End Tooling and Performance - Codeaholics HK 2015
Front End Tooling and Performance - Codeaholics HK 2015Front End Tooling and Performance - Codeaholics HK 2015
Front End Tooling and Performance - Codeaholics HK 2015
 
Test-proof CSS
Test-proof CSSTest-proof CSS
Test-proof CSS
 
History of-christmas[1]
History of-christmas[1]History of-christmas[1]
History of-christmas[1]
 
Basics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPointBasics of Front End Web Dev PowerPoint
Basics of Front End Web Dev PowerPoint
 
Beyond CSS Architecture
Beyond CSS ArchitectureBeyond CSS Architecture
Beyond CSS Architecture
 
Web Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JSWeb Design Primer Sample - HTML CSS JS
Web Design Primer Sample - HTML CSS JS
 
How to use CSS3 in WordPress
How to use CSS3 in WordPressHow to use CSS3 in WordPress
How to use CSS3 in WordPress
 
Multimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audioMultimedia on the web - HTML5 video and audio
Multimedia on the web - HTML5 video and audio
 
Using HTML5 sensibly
Using HTML5 sensiblyUsing HTML5 sensibly
Using HTML5 sensibly
 
光速テーマ開発のコツ
光速テーマ開発のコツ光速テーマ開発のコツ
光速テーマ開発のコツ
 
HTML5, the new buzzword
HTML5, the new buzzwordHTML5, the new buzzword
HTML5, the new buzzword
 
Modern Front-End Development
Modern Front-End DevelopmentModern Front-End Development
Modern Front-End Development
 
CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017
CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017
CSS Grid Changes Everything - Keynote at WebCamp Zagreb 2017
 
CSS Systems
CSS SystemsCSS Systems
CSS Systems
 
Bootstrap 3 Basic - Bangkok WordPress Meetup
Bootstrap 3 Basic - Bangkok WordPress MeetupBootstrap 3 Basic - Bangkok WordPress Meetup
Bootstrap 3 Basic - Bangkok WordPress Meetup
 
CSS framework By Palash
CSS framework By PalashCSS framework By Palash
CSS framework By Palash
 
Wordless, stop writing WordPress themes like it's 1998
Wordless, stop writing WordPress themes like it's 1998Wordless, stop writing WordPress themes like it's 1998
Wordless, stop writing WordPress themes like it's 1998
 
Aside, within HTML5 + CSS
Aside, within HTML5 + CSSAside, within HTML5 + CSS
Aside, within HTML5 + CSS
 
6 Steps to Make Your CSS Code More Maintainable
6 Steps to Make Your CSS Code More Maintainable6 Steps to Make Your CSS Code More Maintainable
6 Steps to Make Your CSS Code More Maintainable
 

Similar to HTML, CSS i Javascript Web Tehnologije - 1. predavanje - Startit.rs

Mastering the Best Practices for Effective Website Development.pptx
Mastering the Best Practices for Effective Website Development.pptxMastering the Best Practices for Effective Website Development.pptx
Mastering the Best Practices for Effective Website Development.pptxe-Definers Technology
 
6+1 Technical Tips for Tech Startups (2023 Edition)
6+1 Technical Tips for Tech Startups (2023 Edition)6+1 Technical Tips for Tech Startups (2023 Edition)
6+1 Technical Tips for Tech Startups (2023 Edition)Ahmed Misbah
 
WhiteHedge DevOps Offerings and Skillset :: Changing Chaos to Coherence
WhiteHedge DevOps Offerings and Skillset :: Changing Chaos to CoherenceWhiteHedge DevOps Offerings and Skillset :: Changing Chaos to Coherence
WhiteHedge DevOps Offerings and Skillset :: Changing Chaos to CoherenceWhiteHedge Technologies Inc.
 
DevOps Offerings at WhiteHedge
DevOps Offerings at WhiteHedge  DevOps Offerings at WhiteHedge
DevOps Offerings at WhiteHedge Abhijit Joshi
 
web development.pptx
web development.pptxweb development.pptx
web development.pptxNehemiahGanta
 
Cooperative extension’s web presence
Cooperative extension’s web presenceCooperative extension’s web presence
Cooperative extension’s web presencecetechservices
 
SharePoint hub sites - what intranet managers need to know
SharePoint hub sites - what intranet managers need to knowSharePoint hub sites - what intranet managers need to know
SharePoint hub sites - what intranet managers need to knowSam Marshall
 
MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...
MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...
MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...Richard Harbridge
 
Profile 2012b
Profile 2012bProfile 2012b
Profile 2012bWbew
 
Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...
Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...
Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...Richard Harbridge
 
Modifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users groupModifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users groupEvan Mullins
 
Business Agility: Leaner and Smarter
Business Agility: Leaner and SmarterBusiness Agility: Leaner and Smarter
Business Agility: Leaner and SmarterRandy Pilkenton
 
Leaner and Smarter: How Enterprises Can Develop Better Digital Products
Leaner and Smarter: How Enterprises Can Develop Better Digital ProductsLeaner and Smarter: How Enterprises Can Develop Better Digital Products
Leaner and Smarter: How Enterprises Can Develop Better Digital ProductsThoughtworks
 
Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...
Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...
Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...Jack Molisani
 

Similar to HTML, CSS i Javascript Web Tehnologije - 1. predavanje - Startit.rs (20)

Mastering the Best Practices for Effective Website Development.pptx
Mastering the Best Practices for Effective Website Development.pptxMastering the Best Practices for Effective Website Development.pptx
Mastering the Best Practices for Effective Website Development.pptx
 
6+1 Technical Tips for Tech Startups (2023 Edition)
6+1 Technical Tips for Tech Startups (2023 Edition)6+1 Technical Tips for Tech Startups (2023 Edition)
6+1 Technical Tips for Tech Startups (2023 Edition)
 
WhiteHedge DevOps Offerings and Skillset :: Changing Chaos to Coherence
WhiteHedge DevOps Offerings and Skillset :: Changing Chaos to CoherenceWhiteHedge DevOps Offerings and Skillset :: Changing Chaos to Coherence
WhiteHedge DevOps Offerings and Skillset :: Changing Chaos to Coherence
 
College Web Site HTML PROJECT
College Web Site HTML PROJECTCollege Web Site HTML PROJECT
College Web Site HTML PROJECT
 
DevOps Offerings at WhiteHedge
DevOps Offerings at WhiteHedge  DevOps Offerings at WhiteHedge
DevOps Offerings at WhiteHedge
 
web development.pptx
web development.pptxweb development.pptx
web development.pptx
 
Cooperative extension’s web presence
Cooperative extension’s web presenceCooperative extension’s web presence
Cooperative extension’s web presence
 
SharePoint hub sites - what intranet managers need to know
SharePoint hub sites - what intranet managers need to knowSharePoint hub sites - what intranet managers need to know
SharePoint hub sites - what intranet managers need to know
 
MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...
MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...
MICROSOFT 365 STRATEGY & SUCCESS: PRACTICAL TOOLS & TECHNIQUES FOR THE STRATE...
 
Job Description - Web Manager
Job Description - Web ManagerJob Description - Web Manager
Job Description - Web Manager
 
Yahoo Help Content Strategy - Chris Todd
Yahoo Help Content Strategy -  Chris ToddYahoo Help Content Strategy -  Chris Todd
Yahoo Help Content Strategy - Chris Todd
 
Profile 2012b
Profile 2012bProfile 2012b
Profile 2012b
 
Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...
Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...
Best Practices For Getting The Most Out Of Your Intranet & Digital Workplace ...
 
Presentation Slides.pptx
Presentation Slides.pptxPresentation Slides.pptx
Presentation Slides.pptx
 
Agile Wordpress
Agile WordpressAgile Wordpress
Agile Wordpress
 
Modifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users groupModifying your themes design - Learning CSS - Atlanta WordPress users group
Modifying your themes design - Learning CSS - Atlanta WordPress users group
 
Business Agility: Leaner and Smarter
Business Agility: Leaner and SmarterBusiness Agility: Leaner and Smarter
Business Agility: Leaner and Smarter
 
Leaner and Smarter: How Enterprises Can Develop Better Digital Products
Leaner and Smarter: How Enterprises Can Develop Better Digital ProductsLeaner and Smarter: How Enterprises Can Develop Better Digital Products
Leaner and Smarter: How Enterprises Can Develop Better Digital Products
 
Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...
Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...
Lava cIt All Comes Down to Return on Investment (ROI): How Content Strategy I...
 
YASIR-MEHBOOB CV
YASIR-MEHBOOB CVYASIR-MEHBOOB CV
YASIR-MEHBOOB CV
 

More from Milovan Jovičić

HumaneOS: Advancing human potential with computers
HumaneOS: Advancing human potential with computersHumaneOS: Advancing human potential with computers
HumaneOS: Advancing human potential with computersMilovan Jovičić
 
UX Dizajn i Kako ga (na)učiti
UX Dizajn i Kako ga (na)učitiUX Dizajn i Kako ga (na)učiti
UX Dizajn i Kako ga (na)učitiMilovan Jovičić
 
What is User Experience? What is User Testing?
What is User Experience? What is User Testing?What is User Experience? What is User Testing?
What is User Experience? What is User Testing?Milovan Jovičić
 
Trust and responsibility - IXDD 2019.
Trust and responsibility - IXDD 2019.Trust and responsibility - IXDD 2019.
Trust and responsibility - IXDD 2019.Milovan Jovičić
 
Ethics and design - Practical UX meetup #14
Ethics and design - Practical UX meetup #14Ethics and design - Practical UX meetup #14
Ethics and design - Practical UX meetup #14Milovan Jovičić
 
Design critique workshop - Practical UX meetup #11
Design critique workshop  - Practical UX meetup #11Design critique workshop  - Practical UX meetup #11
Design critique workshop - Practical UX meetup #11Milovan Jovičić
 
Introduction to UX Research - Practical Ux meetup #5
Introduction to UX Research - Practical Ux meetup #5Introduction to UX Research - Practical Ux meetup #5
Introduction to UX Research - Practical Ux meetup #5Milovan Jovičić
 
Dizajn chatbotova: Nešto više od "poruka u balonu"
Dizajn chatbotova: Nešto više od "poruka u balonu"Dizajn chatbotova: Nešto više od "poruka u balonu"
Dizajn chatbotova: Nešto više od "poruka u balonu"Milovan Jovičić
 
HTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rsHTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rsMilovan Jovičić
 
HTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rsHTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rsMilovan Jovičić
 
HTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rsHTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rsMilovan Jovičić
 

More from Milovan Jovičić (12)

HumaneOS: Advancing human potential with computers
HumaneOS: Advancing human potential with computersHumaneOS: Advancing human potential with computers
HumaneOS: Advancing human potential with computers
 
UX Dizajn i Kako ga (na)učiti
UX Dizajn i Kako ga (na)učitiUX Dizajn i Kako ga (na)učiti
UX Dizajn i Kako ga (na)učiti
 
What is User Experience? What is User Testing?
What is User Experience? What is User Testing?What is User Experience? What is User Testing?
What is User Experience? What is User Testing?
 
Trust and responsibility - IXDD 2019.
Trust and responsibility - IXDD 2019.Trust and responsibility - IXDD 2019.
Trust and responsibility - IXDD 2019.
 
Ethics and design - Practical UX meetup #14
Ethics and design - Practical UX meetup #14Ethics and design - Practical UX meetup #14
Ethics and design - Practical UX meetup #14
 
What is design critique?
What is design critique?What is design critique?
What is design critique?
 
Design critique workshop - Practical UX meetup #11
Design critique workshop  - Practical UX meetup #11Design critique workshop  - Practical UX meetup #11
Design critique workshop - Practical UX meetup #11
 
Introduction to UX Research - Practical Ux meetup #5
Introduction to UX Research - Practical Ux meetup #5Introduction to UX Research - Practical Ux meetup #5
Introduction to UX Research - Practical Ux meetup #5
 
Dizajn chatbotova: Nešto više od "poruka u balonu"
Dizajn chatbotova: Nešto više od "poruka u balonu"Dizajn chatbotova: Nešto više od "poruka u balonu"
Dizajn chatbotova: Nešto više od "poruka u balonu"
 
HTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rsHTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 4. predavanje - Startit.rs
 
HTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rsHTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 3. predavanje - Startit.rs
 
HTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rsHTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rs
HTML, CSS i Javascript Web tehnologije - 2. predavanje - Startit.rs
 

Recently uploaded

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsKarinaGenton
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...M56BOOKSTORE PRODUCT/SERVICE
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppCeline George
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 

Recently uploaded (20)

microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Science 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its CharacteristicsScience 7 - LAND and SEA BREEZE and its Characteristics
Science 7 - LAND and SEA BREEZE and its Characteristics
 
Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1Código Creativo y Arte de Software | Unidad 1
Código Creativo y Arte de Software | Unidad 1
 
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
KSHARA STURA .pptx---KSHARA KARMA THERAPY (CAUSTIC THERAPY)————IMP.OF KSHARA ...
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
URLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website AppURLs and Routing in the Odoo 17 Website App
URLs and Routing in the Odoo 17 Website App
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 

HTML, CSS i Javascript Web Tehnologije - 1. predavanje - Startit.rs