SlideShare a Scribd company logo
1 of 89
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

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

Week11 Lecture: CSS
Week11 Lecture: CSSWeek11 Lecture: CSS
Week11 Lecture: CSS
 
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
 
Kick start @ css
Kick start @ cssKick start @ css
Kick start @ css
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
 

More from Stefan Oprea

Training-Book-Samsung.ppt
Training-Book-Samsung.pptTraining-Book-Samsung.ppt
Training-Book-Samsung.pptStefan Oprea
 
PRESENTATION ON TOUCH TECHNOLOGY.ppt
PRESENTATION ON TOUCH TECHNOLOGY.pptPRESENTATION ON TOUCH TECHNOLOGY.ppt
PRESENTATION ON TOUCH TECHNOLOGY.pptStefan Oprea
 
Web technologies-course 12.pptx
Web technologies-course 12.pptxWeb technologies-course 12.pptx
Web technologies-course 12.pptxStefan Oprea
 
Web technologies-course 11.pptx
Web technologies-course 11.pptxWeb technologies-course 11.pptx
Web technologies-course 11.pptxStefan Oprea
 
Web technologies-course 10.pptx
Web technologies-course 10.pptxWeb technologies-course 10.pptx
Web technologies-course 10.pptxStefan Oprea
 
Web technologies-course 09.pptx
Web technologies-course 09.pptxWeb technologies-course 09.pptx
Web technologies-course 09.pptxStefan Oprea
 
Web technologies-course 08.pptx
Web technologies-course 08.pptxWeb technologies-course 08.pptx
Web technologies-course 08.pptxStefan Oprea
 
Web technologies-course 07.pptx
Web technologies-course 07.pptxWeb technologies-course 07.pptx
Web technologies-course 07.pptxStefan Oprea
 
Web technologies-course 06.pptx
Web technologies-course 06.pptxWeb technologies-course 06.pptx
Web technologies-course 06.pptxStefan Oprea
 
Web technologies-course 05.pptx
Web technologies-course 05.pptxWeb technologies-course 05.pptx
Web technologies-course 05.pptxStefan Oprea
 
Web technologies-course 04.pptx
Web technologies-course 04.pptxWeb technologies-course 04.pptx
Web technologies-course 04.pptxStefan Oprea
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptxStefan Oprea
 
Web technologies-course 01.pptx
Web technologies-course 01.pptxWeb technologies-course 01.pptx
Web technologies-course 01.pptxStefan Oprea
 
Fundamentals of Digital Modulation.ppt
Fundamentals of Digital Modulation.pptFundamentals of Digital Modulation.ppt
Fundamentals of Digital Modulation.pptStefan Oprea
 
Orthogonal Frequency Division Multiplexing.ppt
Orthogonal Frequency Division Multiplexing.pptOrthogonal Frequency Division Multiplexing.ppt
Orthogonal Frequency Division Multiplexing.pptStefan Oprea
 
Modulation tutorial.ppt
Modulation tutorial.pptModulation tutorial.ppt
Modulation tutorial.pptStefan 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.pptStefan 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.pptStefan Oprea
 
Concepts of 3GPP LTE.ppt
Concepts of 3GPP LTE.pptConcepts of 3GPP LTE.ppt
Concepts of 3GPP LTE.pptStefan 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.pptStefan 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

EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
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
 
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
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfMahmoud M. Sallam
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersSabitha Banu
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
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
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,Virag Sontakke
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentInMediaRes1
 

Recently uploaded (20)

EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
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
 
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
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Pharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdfPharmacognosy Flower 3. Compositae 2023.pdf
Pharmacognosy Flower 3. Compositae 2023.pdf
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
DATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginnersDATA STRUCTURE AND ALGORITHM for beginners
DATA STRUCTURE AND ALGORITHM for beginners
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
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
 
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
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,भारत-रोम व्यापार.pptx, Indo-Roman Trade,
भारत-रोम व्यापार.pptx, Indo-Roman Trade,
 
Meghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media ComponentMeghan Sutherland In Media Res Media Component
Meghan Sutherland In Media Res Media Component
 

Web technologies-course 03.pptx