SlideShare a Scribd company logo
COURSE 03
CSS
lect. eng. Rajmond JÁNÓ, PhD
rajmond.jano@ael.utcl
uj.ro
fb.com/janorajmond
C03 – CSS
• Introduction
• Including CSS in HTML
pages
• CSS syntax
• CSS selectors
• IDs and classes
• Combining selectors
• Pseodo-element
selectors
• Selector priority
• Inheritance
• Styling color
• Styling font
• Specifying dimensions
• Borders, padding and
margins
• Positioning elements
• Adding opacity and
shadows
CSS
• Cascading Style Sheets (CSS) is a style sheet
language used for describing the presentation
of a document written in a markup language
like HTML
• CSS is a cornerstone technology of the World
Wide Web, alongside HTML and JavaScript
HTML + CSS
HTML HTML +
CSS
HTML + CSS
HTML + CSS
CSS
• The “cascade” part of CSS is a set of rules for
resolving conflicts with multiple CSS rules
applied to the same elements
• For example, if there are two rules defining the
color of an element, the rule that comes last in
the cascade order will “trump” the other
STYLING HTML
• HTML tags can be used to style HTML
• However, they shouldn’t be used
• Most formatting attributes have been deprecated in
HTML5
STYLING HTML
• Separation of concerns:
• HTML – structure of the webpage
• CSS – style of the webpage
STYLING HTML
HTML
CSS
Rendered
page
INCLUDING CSS IN WEB PAGES
• Inlining styles – style is defined when the element
is defined
INCLUDING CSS IN WEB PAGES
• Using the <style></style> tags in the head of
the HTML document
INCLUDING CSS IN WEB PAGES
• Using a separate linked stylesheet – most
commonly used
index.html myStyles.css
CSS SYNTAX
• Three terms for describing your styles
• CSS rule
• CSS selector
• CSS declaration
CSS RULE
• Every style is defined by a selector and a
declaration
• The declaration contains at least one property:
value pair. Together they are called a CSS rule
selector {
property1: value1;
property2: value2;
…
propertyn: valuen;
}
declaration
CSS SELECTOR
• The selector associates CSS rules with HTML
elements
CSS SELECTOR
• The selector is typed in front of the
declaration, with a space separating it and the
opening curly-bracket (aka curly-brace)
• Typically, extra indentation and returns are
added as shown for the sake of readability
CSS SELECTOR
• You can apply styles to multiple selectors in
the same rule by separating the selectors with
commas
CSS DECLARATION
• You can apply multiple declarations to a
selector by separating the declarations with
semi-colons.
CSS SELECTORS
• There are three categories of CSS selectors
• All (*)
• Type (element)
• ID
• Class
* SELECTOR
• Selects all elements on the web page
HTML CSS
TYPE (ELEMENT) SELECTORS
• The simplest selector is the type selector,
which targets an HTML element by name
ID SELECTORS
• An ID is an HTML attribute that is added to
your HTML markup
• You reference that ID in your CSS with a hash
(#)
• IDs should be unique in your HTML/CSS
HTML CSS
CLASS SELECTORS
• A class is an HTML attribute that is added to
your HTML markup
• You reference that class in your CSS with a
period (.)
HTML CSS
IDS VS. CLASSES
• The most important difference between IDs
and classes is that there can be only one ID
assigned to an element, but multiple classes
• An ID is more specific than a class
• An element can have both an ID and multiple
classes
IDS VS. CLASSES
IDS VS. CLASSES
HTML
CSS
IDS VS. CLASSES
HTML
CSS
What color will the paragraph
text be?
ID > class
MULTIPLE CLASSES
• Elements can have multiple classes, giving you
more control
HTML
CSS
SELECTOR COMBINATIONS
• Element+.class
HTML CSS
SELECTOR COMBINATIONS
• Element+.class
HTML CSS
SELECTOR COMBINATIONS
• .class+.class
HTML CSS
SELECTOR COMBINATIONS
• selector, selector
HTML CSS
DESCENDANT SELECTORS
• selector selector
HTML CSS
ADJACENT SELECTORS
• selector ~ selector (all adjacent)
HTML CSS
adjacent
ADJACENT SELECTORS
• selector + selector (directly adjacent)
HTML CSS
directly
adjacent
PSEUDO-ELEMENT SELECTORS
• :after
• :before
• :first-line
• :first-letter
• :selection
PSEUDO-ELEMENT SELECTORS
HTML CSS
PSEUDO-ELEMENT SELECTORS
• [attribute]
• [attribute=“exact-value”]
• [attribute*=“contains-value”]
• [attribute^=“begins-value”]
PSEUDO-ELEMENT SELECTORS
HTML
CSS
PSEUDO-CLASSES
• :active
• :link
• :visited
• :hover
• :focus
• … and many more
PSEUDO-CLASSES
• :first-child
• :last-child
• :only-child
• :nth-child(n)
• :nth-last-child(n)
PSEUDO-CLASSES
HTML CSS
SELECTOR PRIORITY
• Last loaded selector will trump any other
HTML CSS
SELECTOR PRIORITY
• Last loaded selector will trump any other
HTML CSS
SELECTOR PRIORITY
• Last loaded selector will trump any other
HTML CSS
CASCADING PRIORITY
Browser stylesheet
Linked (external) stylesheet
Embedded (internal) styles
Inline (internal) styles
INHERITANCE
• Most elements will inherit many style
properties from their parent elements by
default
!IMPORTANT SPECIFIER
• The !important specifier can be used to
override normal cascading and inheritance
• Normal use case: never!
HTML
CSS
!IMPORTANT SPECIFIER
• The !important specifier can be used to
override normal cascading and inheritance
• Normal use case: never!
HTML
CSS
APPLYING COLOR
• color – text color
• background-color – background color
(duuuh…) HTML CSS
APPLYING COLOR
• There are 3 main ways to set color:
• By name: red, white, blue, magenta, etc.
• By hex-RGB values: #006699, #123456, #FFAACC
• By RGB(A) values: rgb(0, 66, 99), rgba(123, 255, 0,
0.5)
• By HSL values: hsl(100, 66%, 99%), hsl(360, 55%, 0%)
APPLYING COLOR
• Use any color picker from the Internet (e.g.:
w3schools)
APPLYING COLOR
• Or just ask
Google
Assistant to
show you a
Color Picker
APPLYING COLOR
HTML CSS
FONT ATTRIBUTES
• For fonts, we generally want to style the
following:
• color: color
• size: font-size
• effect: font-weight, font-style, text-
decoration
• family: font-family
FONT-SIZE
• font-size
• pixels: px
• relative size of the element: em
HTML
FONT-SIZE
CSS
FONT-WEIGHT, FONT-STYLE,
TEXT-DECORATION
CSS
FONT-FAMILY
• For the font family you can (and should)
specify, in order:
• The exact font name
• A fallback font name or font family
• A generic font type (if none of the above are
available)
• You can also import font from other font
repositories (like Google Fonts)
FONT-FAMILY
CSS
Font to use
Fallback
Generic
(built-in
browser)
SPECIFYING DIMENSIONS
• You can specify dimensions (width and/or
height) to most HTML elements in:
• pixels
• percentages (of current viewport)
• You can also specify a maximum width of
length
SPECIFYING DIMENSIONS
HTML
CSS
SPECIFYING DIMENSIONS
HTML
CSS
The div will take up 50%
of the viewport until it
reaches 200px in width
and then it will stop
growing
MEASUREMENT UNITS IN CSS
Unit Description Example
% Defines a measurement as a percentage relative to another
value, typically an enclosing element.
p {
font-size: 16pt;
line-height: 125%;
}
px Defines a measurement in screen pixels. p {
padding: 25px;
}
em A relative measurement for the height of a font in em spaces.
Because an em unit is equivalent to the size of a given font, if
you assign a font to 12pt, each "em" unit would be 12pt; thus,
2em would be 24pt.
p {
letter-spacing: 7em;
}
rem Similar to “em” but while em is relative to the font-size of its
direct or nearest parent, rem is only relative to the html (root)
font-size.
p {
letter-spacing: 7rem;
}
cm/mm
/in
Defines a measurement in centimeters, millimeters or inches p {
word-spacing: 15mm;
}
pt Defines a measurement in points. A point is defined as
1/72nd of an inch.
body {
font-size: 18pt;
}
ex This value defines a measurement relative to a font's x-
height. The x-height is determined by the height of the font's
lowercase letter x.
p {
font-size: 24pt;
line-height: 3ex;
}
Margin
Border
Padding
BORDERS, PADDING, MARGINS
Conte
nt
BORDERS, PADDING, MARGINS
HTML CSS
BORDERS, PADDING, MARGINS
HTML CSS
BORDERS, PADDING, MARGINS
HTML CSS
Note: CSS comments are
just like C/C++ block
comments /* */
BORDERS, PADDING, MARGINS
HTML CSS
BORDER-RADIUS
HTML CSS
BORDER-RADIUS
HTML CSS
BORDER-RADIUS
HTML CSS
POSITIONING
• There are four basic types of positions in CSS
• Static
• Relative
• Absolute
• Fixed
POSITIONING
HTML CSS
default positioning is
POSITIONING
HTML CSS
With relative positioning you can
move an element from where it’s
POSITIONING
HTML CSS
Pay special attention when
using negative positioning
values!
POSITIONING
HTML CSS
Absolute positioning will place the element to the
specified location relative to the parent element (the
entire HTML document, in this case).
POSITIONING
HTML CSS
Fixed positioning will place the element relative to the
current viewport.
The element will stay in that position even if the page is
OPACITY
HTML CSS
OPACITY
HTML CSS
SHADOW
HTML CSS
Well, that looks like 💩, doesn’t it?
SHADOW
HTML CSS
Little bit better…
SHADOW
CSS
Blur
attribute
CHANGING CURSORS
• CSS can control the look of the cursor using the cursor
attribute CSS
HTML
BIBLIOGRAPHY
• https://www.w3schools.com/css/default.asp
• https://www.w3schools.com/css/css_syntax.as
p
• https://www.w3schools.com/cssref/css_selecto
rs.asp
• https://www.w3schools.com/css/css_pseudo_el
ements.asp
• https://www.w3schools.com/css/css_pseudo_cl
asses.asp
• https://www.w3schools.com/colors/default.asp
COURSES
Available online at:
http://www.ael.utcluj.ro/
Information for Students -> Courses -> Web
Technologies
Web technologies-course 03.pptx

More Related Content

Similar to Web technologies-course 03.pptx

Intro to css & sass
Intro to css & sassIntro to css & sass
Intro to css & sass
Sean Wolfe
 
Week11 Lecture: CSS
Week11 Lecture: CSSWeek11 Lecture: CSS
Cascading style sheets, Introduction to web programming
Cascading style sheets, Introduction to web programmingCascading style sheets, Introduction to web programming
Cascading style sheets, Introduction to web programming
LikhithaBrunda
 
Web Development - Lecture 5
Web Development - Lecture 5Web Development - Lecture 5
Web Development - Lecture 5
Syed Shahzaib Sohail
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
Salman Memon
 
Css.html
Css.htmlCss.html
WEB TECHNOLOGY Unit-2.pptx
WEB TECHNOLOGY Unit-2.pptxWEB TECHNOLOGY Unit-2.pptx
WEB TECHNOLOGY Unit-2.pptx
karthiksmart21
 
Css
CssCss
Chapter 11: Intro to CSS
Chapter 11: Intro to CSSChapter 11: Intro to CSS
Chapter 11: Intro to CSS
Steve Guinan
 
CSS Part I
CSS Part ICSS Part I
CSS Part I
Doncho Minkov
 
Responsive web design with html5 and css3
Responsive web design with html5 and css3Responsive web design with html5 and css3
Responsive web design with html5 and css3
Divya Tiwari
 
Castro Chapter 7
Castro Chapter 7Castro Chapter 7
Castro Chapter 7
Jeff Byrnes
 
Css
CssCss
Internet tech &amp; web prog. p4,5
Internet tech &amp; web prog.  p4,5Internet tech &amp; web prog.  p4,5
Internet tech &amp; web prog. p4,5
Taymoor Nazmy
 
Web day01 MOL.pdf
Web day01 MOL.pdfWeb day01 MOL.pdf
Web day01 MOL.pdf
NamanSingla41
 
Web Programming& Scripting Lab
Web Programming& Scripting LabWeb Programming& Scripting Lab
Web Programming& Scripting Lab
Swapnali Pawar
 
Unit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptxUnit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptx
Tanu524249
 
CSS.pptx
CSS.pptxCSS.pptx
Intro to html, css & sass
Intro to html, css & sassIntro to html, css & sass
Intro to html, css & sass
Sean Wolfe
 
ch04-css-basics_final.ppt
ch04-css-basics_final.pptch04-css-basics_final.ppt
ch04-css-basics_final.ppt
GmachImen
 

Similar to Web technologies-course 03.pptx (20)

Intro to css & sass
Intro to css & sassIntro to css & sass
Intro to css & sass
 
Week11 Lecture: CSS
Week11 Lecture: CSSWeek11 Lecture: CSS
Week11 Lecture: CSS
 
Cascading style sheets, Introduction to web programming
Cascading style sheets, Introduction to web programmingCascading style sheets, Introduction to web programming
Cascading style sheets, Introduction to web programming
 
Web Development - Lecture 5
Web Development - Lecture 5Web Development - Lecture 5
Web Development - Lecture 5
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
Css.html
Css.htmlCss.html
Css.html
 
WEB TECHNOLOGY Unit-2.pptx
WEB TECHNOLOGY Unit-2.pptxWEB TECHNOLOGY Unit-2.pptx
WEB TECHNOLOGY Unit-2.pptx
 
Css
CssCss
Css
 
Chapter 11: Intro to CSS
Chapter 11: Intro to CSSChapter 11: Intro to CSS
Chapter 11: Intro to CSS
 
CSS Part I
CSS Part ICSS Part I
CSS Part I
 
Responsive web design with html5 and css3
Responsive web design with html5 and css3Responsive web design with html5 and css3
Responsive web design with html5 and css3
 
Castro Chapter 7
Castro Chapter 7Castro Chapter 7
Castro Chapter 7
 
Css
CssCss
Css
 
Internet tech &amp; web prog. p4,5
Internet tech &amp; web prog.  p4,5Internet tech &amp; web prog.  p4,5
Internet tech &amp; web prog. p4,5
 
Web day01 MOL.pdf
Web day01 MOL.pdfWeb day01 MOL.pdf
Web day01 MOL.pdf
 
Web Programming& Scripting Lab
Web Programming& Scripting LabWeb Programming& Scripting Lab
Web Programming& Scripting Lab
 
Unit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptxUnit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptx
 
CSS.pptx
CSS.pptxCSS.pptx
CSS.pptx
 
Intro to html, css & sass
Intro to html, css & sassIntro to html, css & sass
Intro to html, css & sass
 
ch04-css-basics_final.ppt
ch04-css-basics_final.pptch04-css-basics_final.ppt
ch04-css-basics_final.ppt
 

More from Stefan Oprea

Training-Book-Samsung.ppt
Training-Book-Samsung.pptTraining-Book-Samsung.ppt
Training-Book-Samsung.ppt
Stefan Oprea
 
PRESENTATION ON TOUCH TECHNOLOGY.ppt
PRESENTATION ON TOUCH TECHNOLOGY.pptPRESENTATION ON TOUCH TECHNOLOGY.ppt
PRESENTATION ON TOUCH TECHNOLOGY.ppt
Stefan Oprea
 
Web technologies-course 12.pptx
Web technologies-course 12.pptxWeb technologies-course 12.pptx
Web technologies-course 12.pptx
Stefan Oprea
 
Web technologies-course 11.pptx
Web technologies-course 11.pptxWeb technologies-course 11.pptx
Web technologies-course 11.pptx
Stefan Oprea
 
Web technologies-course 10.pptx
Web technologies-course 10.pptxWeb technologies-course 10.pptx
Web technologies-course 10.pptx
Stefan Oprea
 
Web technologies-course 09.pptx
Web technologies-course 09.pptxWeb technologies-course 09.pptx
Web technologies-course 09.pptx
Stefan Oprea
 
Web technologies-course 08.pptx
Web technologies-course 08.pptxWeb technologies-course 08.pptx
Web technologies-course 08.pptx
Stefan Oprea
 
Web technologies-course 07.pptx
Web technologies-course 07.pptxWeb technologies-course 07.pptx
Web technologies-course 07.pptx
Stefan Oprea
 
Web technologies-course 06.pptx
Web technologies-course 06.pptxWeb technologies-course 06.pptx
Web technologies-course 06.pptx
Stefan Oprea
 
Web technologies-course 05.pptx
Web technologies-course 05.pptxWeb technologies-course 05.pptx
Web technologies-course 05.pptx
Stefan Oprea
 
Web technologies-course 04.pptx
Web technologies-course 04.pptxWeb technologies-course 04.pptx
Web technologies-course 04.pptx
Stefan Oprea
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
Stefan Oprea
 
Web technologies-course 01.pptx
Web technologies-course 01.pptxWeb technologies-course 01.pptx
Web technologies-course 01.pptx
Stefan Oprea
 
Fundamentals of Digital Modulation.ppt
Fundamentals of Digital Modulation.pptFundamentals of Digital Modulation.ppt
Fundamentals of Digital Modulation.ppt
Stefan Oprea
 
Orthogonal Frequency Division Multiplexing.ppt
Orthogonal Frequency Division Multiplexing.pptOrthogonal Frequency Division Multiplexing.ppt
Orthogonal Frequency Division Multiplexing.ppt
Stefan Oprea
 
Modulation tutorial.ppt
Modulation tutorial.pptModulation tutorial.ppt
Modulation tutorial.ppt
Stefan Oprea
 
Comparison of Single Carrier and Multi-carrier.ppt
Comparison of Single Carrier and Multi-carrier.pptComparison of Single Carrier and Multi-carrier.ppt
Comparison of Single Carrier and Multi-carrier.ppt
Stefan Oprea
 
OFDM and MC-CDMA An Implementation using MATLAB.ppt
OFDM and MC-CDMA An Implementation using MATLAB.pptOFDM and MC-CDMA An Implementation using MATLAB.ppt
OFDM and MC-CDMA An Implementation using MATLAB.ppt
Stefan Oprea
 
Concepts of 3GPP LTE.ppt
Concepts of 3GPP LTE.pptConcepts of 3GPP LTE.ppt
Concepts of 3GPP LTE.ppt
Stefan Oprea
 
Multi-Carrier Transmission over Mobile Radio Channels.ppt
Multi-Carrier Transmission over Mobile Radio Channels.pptMulti-Carrier Transmission over Mobile Radio Channels.ppt
Multi-Carrier Transmission over Mobile Radio Channels.ppt
Stefan Oprea
 

More from Stefan Oprea (20)

Training-Book-Samsung.ppt
Training-Book-Samsung.pptTraining-Book-Samsung.ppt
Training-Book-Samsung.ppt
 
PRESENTATION ON TOUCH TECHNOLOGY.ppt
PRESENTATION ON TOUCH TECHNOLOGY.pptPRESENTATION ON TOUCH TECHNOLOGY.ppt
PRESENTATION ON TOUCH TECHNOLOGY.ppt
 
Web technologies-course 12.pptx
Web technologies-course 12.pptxWeb technologies-course 12.pptx
Web technologies-course 12.pptx
 
Web technologies-course 11.pptx
Web technologies-course 11.pptxWeb technologies-course 11.pptx
Web technologies-course 11.pptx
 
Web technologies-course 10.pptx
Web technologies-course 10.pptxWeb technologies-course 10.pptx
Web technologies-course 10.pptx
 
Web technologies-course 09.pptx
Web technologies-course 09.pptxWeb technologies-course 09.pptx
Web technologies-course 09.pptx
 
Web technologies-course 08.pptx
Web technologies-course 08.pptxWeb technologies-course 08.pptx
Web technologies-course 08.pptx
 
Web technologies-course 07.pptx
Web technologies-course 07.pptxWeb technologies-course 07.pptx
Web technologies-course 07.pptx
 
Web technologies-course 06.pptx
Web technologies-course 06.pptxWeb technologies-course 06.pptx
Web technologies-course 06.pptx
 
Web technologies-course 05.pptx
Web technologies-course 05.pptxWeb technologies-course 05.pptx
Web technologies-course 05.pptx
 
Web technologies-course 04.pptx
Web technologies-course 04.pptxWeb technologies-course 04.pptx
Web technologies-course 04.pptx
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
Web technologies-course 01.pptx
Web technologies-course 01.pptxWeb technologies-course 01.pptx
Web technologies-course 01.pptx
 
Fundamentals of Digital Modulation.ppt
Fundamentals of Digital Modulation.pptFundamentals of Digital Modulation.ppt
Fundamentals of Digital Modulation.ppt
 
Orthogonal Frequency Division Multiplexing.ppt
Orthogonal Frequency Division Multiplexing.pptOrthogonal Frequency Division Multiplexing.ppt
Orthogonal Frequency Division Multiplexing.ppt
 
Modulation tutorial.ppt
Modulation tutorial.pptModulation tutorial.ppt
Modulation tutorial.ppt
 
Comparison of Single Carrier and Multi-carrier.ppt
Comparison of Single Carrier and Multi-carrier.pptComparison of Single Carrier and Multi-carrier.ppt
Comparison of Single Carrier and Multi-carrier.ppt
 
OFDM and MC-CDMA An Implementation using MATLAB.ppt
OFDM and MC-CDMA An Implementation using MATLAB.pptOFDM and MC-CDMA An Implementation using MATLAB.ppt
OFDM and MC-CDMA An Implementation using MATLAB.ppt
 
Concepts of 3GPP LTE.ppt
Concepts of 3GPP LTE.pptConcepts of 3GPP LTE.ppt
Concepts of 3GPP LTE.ppt
 
Multi-Carrier Transmission over Mobile Radio Channels.ppt
Multi-Carrier Transmission over Mobile Radio Channels.pptMulti-Carrier Transmission over Mobile Radio Channels.ppt
Multi-Carrier Transmission over Mobile Radio Channels.ppt
 

Recently uploaded

MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
simonomuemu
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
Celine George
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
Katrina Pritchard
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
amberjdewit93
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
adhitya5119
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
heathfieldcps1
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
Jean Carlos Nunes Paixão
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
ak6969907
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
Celine George
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
National Information Standards Organization (NISO)
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 

Recently uploaded (20)

MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
Smart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICTSmart-Money for SMC traders good time and ICT
Smart-Money for SMC traders good time and ICT
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17How to Fix the Import Error in the Odoo 17
How to Fix the Import Error in the Odoo 17
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
BBR 2024 Summer Sessions Interview Training
BBR  2024 Summer Sessions Interview TrainingBBR  2024 Summer Sessions Interview Training
BBR 2024 Summer Sessions Interview Training
 
Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
Digital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental DesignDigital Artefact 1 - Tiny Home Environmental Design
Digital Artefact 1 - Tiny Home Environmental Design
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
Main Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docxMain Java[All of the Base Concepts}.docx
Main Java[All of the Base Concepts}.docx
 
The basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptxThe basics of sentences session 6pptx.pptx
The basics of sentences session 6pptx.pptx
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
A Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdfA Independência da América Espanhola LAPBOOK.pdf
A Independência da América Espanhola LAPBOOK.pdf
 
World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024World environment day ppt For 5 June 2024
World environment day ppt For 5 June 2024
 
How to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRMHow to Manage Your Lost Opportunities in Odoo 17 CRM
How to Manage Your Lost Opportunities in Odoo 17 CRM
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
Pollock and Snow "DEIA in the Scholarly Landscape, Session One: Setting Expec...
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 

Web technologies-course 03.pptx