SlideShare una empresa de Scribd logo
1 de 123
Descargar para leer sin conexión
@neelotpal.dey
I. Introduction to CSS
@neelotpal.dey
A. What is CSS?
 - CSS (Cascading Style Sheets) is a stylesheet language used to
describe the presentation of a document written in HTML or XML.
 - It allows developers to control the visual styling of web pages,
including layout, colors, fonts, and other design elements.
@neelotpal.dey
B. Importance of CSS in web
development
 - Separates content (HTML) from presentation (CSS), enabling
better maintainability and reusability.
 - Provides consistent styling across multiple web pages.
 - Enhances the overall user experience by creating visually
appealing and accessible designs.
 - Enables responsive design, allowing websites to adapt to
different devices and screen sizes.
@neelotpal.dey
C. Versions of CSS
 - CSS 1 (1996): The initial version, providing basic styling
capabilities.
 - CSS 2 (1998): Introduced advanced selectors, positioning, and
media types.
 - CSS 2.1 (2004): A revision of CSS 2, fixing errors and adding a
few new features.
 - CSS 3 (ongoing): Modularized and continuously evolving,
introducing new features and improvements.
@neelotpal.dey
II. CSS Syntax
@neelotpal.dey
A. Syntax structure (selector, property,
value)
 - CSS rules consist of a selector, property, and value:
 ```css
 selector {
 property: value;
 }
 ```
 - Selectors define the HTML elements to be styled.
 - Properties specify the styles to be applied.
 - Values define the specific styling details.
@neelotpal.dey
B. CSS comments
 - Comments in CSS are used to provide explanations or
temporarily disable code.
 - Single-line comments start with `/*` and end with `*/`.
 ```css
 /* This is a CSS comment */
 ```
@neelotpal.dey
I. Introduction to CSS Properties
 A. What are CSS properties?
 - CSS properties define the style and presentation of HTML elements
 B. Importance of CSS properties in web design
 - CSS properties enable separation of content and presentation
 - They provide control over various aspects of web page design
@neelotpal.dey
II. Typography
Properties
@neelotpal.dey
A. Font Properties
@neelotpal.dey
1. font-family
 - Description: Specifies the font family for text
 - Syntax: font-family: "font-family-name", generic-family;
@neelotpal.dey
2. font-size
 - Description: Sets the size of the text
 - Syntax: font-size: size-value;
@neelotpal.dey
3. font-weight
 - Description: Specifies the weight (boldness) of the font
 - Syntax: font-weight:
normal|bold|bolder|lighter|100|200|...|900;
@neelotpal.dey
4. font-style
 - Description: Specifies the font style (normal, italic, or
oblique)
 - Syntax: font-style: normal|italic|oblique;
@neelotpal.dey
5. font-variant
 - Description: Specifies the variant of the font (small-caps or
normal)
 - Syntax: font-variant: normal|small-caps;
@neelotpal.dey
B. Text Properties
@neelotpal.dey
1. text-align
 - Description: Specifies the horizontal alignment of text
 - Syntax: text-align: left|right|center|justify|start|end;
@neelotpal.dey
2. text-decoration
 - Description: Adds decoration to text (underline, overline,
line-through)
 - Syntax: text-decoration: none|underline|overline|line-through;
@neelotpal.dey
3. text-transform
 - Description: Controls the capitalization of text
 - Syntax: text-transform: none|capitalize|uppercase|lowercase;
@neelotpal.dey
4. text-indent
 - Description: Specifies the indentation of the first line of text
 - Syntax: text-indent: length-value;
@neelotpal.dey
5. line-height
 - Description: Sets the height of a line of text
 - Syntax: line-height: normal|number|length|percentage;
@neelotpal.dey
6. letter-spacing
 - Description: Increases or decreases the space between
characters
 - Syntax: letter-spacing: normal|length-value;
@neelotpal.dey
7. word-spacing
 - Description: Increases or decreases the space between words
 - Syntax: word-spacing: normal|length-value;
@neelotpal.dey
8. white-space
 - Description: Specifies how white-space inside an element is
handled
 - Syntax: white-space: normal|nowrap|pre|pre-line|pre-wrap;
@neelotpal.dey
9. text-shadow
 - Description: Adds a shadow effect to text
 - Syntax: text-shadow: h-shadow v-shadow blur-radius color;
@neelotpal.dey
III. Color and Background Properties
@neelotpal.dey
A. Color Properties
 1. color
 - Description: Sets the foreground color of text
 - Syntax: color: color-name|hex-value|rgb-value|rgba-value;
 2. opacity
 - Description: Specifies the opacity/transparency level of an element
 - Syntax: opacity: value;
 /* value from 0.0 (fully transparent) to 1.0 (fully opaque) */
@neelotpal.dey
B. Background Properties
@neelotpal.dey
1. background-color
 - Description: Sets the background color of an element
 - Syntax: background-color: color-name|hex-value|rgb-
value|rgba-value;
@neelotpal.dey
2. background-image
 - Description: Specifies one or more background images for an
element
 - Syntax: background-image: url("image-path")|linear-
gradient()|radial-gradient()|...;
@neelotpal.dey
3. background-repeat
 - Description: Specifies how background images are repeated
 - Syntax: background-repeat: repeat|repeat-x|repeat-y|no-
repeat;
@neelotpal.dey
4. background-position
 - Description: Specifies the starting position of a background
image
 - Syntax: background-position: x-value y-value|position-
keyword;
@neelotpal.dey
5. background-size
 - Description: Specifies the size of the background image(s)
 - Syntax: background-size: auto|length-
value|percentage|cover|contain;
@neelotpal.dey
6. background-attachment
 - Description: Specifies whether the background image scrolls
with the content or is fixed
 - Syntax: background-attachment: scroll|fixed|local;
@neelotpal.dey
7. background-clip
 - Description: Specifies the painting area of the background
 - Syntax: background-clip: border-box|padding-box|content-
box;
@neelotpal.dey
8. background-origin
 - Description: Specifies the positioning area of the background
image(s)
 - Syntax: background-origin: padding-box|border-box|content-
box;
@neelotpal.dey
9. background (shorthand)
 - Description: A shorthand property for setting multiple
background properties at once
 - Syntax: background: bg-color bg-image position/bg-size bg-
repeat bg-origin bg-clip bg-attachment;
@neelotpal.dey
IV. Box Model
Properties
@neelotpal.dey
A. Margin Properties
@neelotpal.dey
1. margin
 - Description: A shorthand property for setting all four margins
at once
 - Syntax: margin: value; /* top, right, bottom, left */
@neelotpal.dey
2. margin-top
 - Description: Sets the top margin of an element
 - Syntax: margin-top: length-value;
@neelotpal.dey
3. margin-right
 - Description: Sets the right margin of an element
 - Syntax: margin-right: length-value;
@neelotpal.dey
4. margin-bottom
 - Description: Sets the bottom margin of an element
 - Syntax: margin-bottom: length-value;
@neelotpal.dey
5. margin-left
 - Description: Sets the left margin of an element
 - Syntax: margin-left: length-value;
@neelotpal.dey
B. Padding Properties
@neelotpal.dey
1. padding
 - Description: A shorthand property for setting all four
paddings at once
 - Syntax: padding: value; /* top, right, bottom, left */
@neelotpal.dey
2. padding-top
 - Description: Sets the top padding of an element
 - Syntax: padding-top: length-value;
@neelotpal.dey
3. padding-right
 - Description: Sets the right padding of an element
 - Syntax: padding-right: length-value;
@neelotpal.dey
4. padding-bottom
 - Description: Sets the bottom padding of an element
 - Syntax: padding-bottom: length-value;
@neelotpal.dey
5. padding-left
 - Description: Sets the left padding of an element
 - Syntax: padding-left: length-value;
@neelotpal.dey
C. Border Properties
@neelotpal.dey
1. border
 - Description: A shorthand property for setting all border
properties at once
 - Syntax: border: border-width border-style border-color;
@neelotpal.dey
2. border-width
 - Description: Sets the width of the border
 - Syntax: border-width: thin|medium|thick|length-value;
@neelotpal.dey
3. border-style
 - Description: Sets the style of the border
 - Syntax: border-style:
none|hidden|dotted|dashed|solid|double|groove|ridge|inset|outset;
@neelotpal.dey
4. border-color
 - Description: Sets the color of the border
 - Syntax: border-color: color-name|hex-value|rgb-value|rgba-
value;
@neelotpal.dey
5. border-radius
 - Description: Specifies the radius of rounded corners
 - Syntax: border-radius: length-value;
@neelotpal.dey
D. Box-sizing
 - Description: Specifies how the total width and height of an
element are calculated
 - Syntax: box-sizing: content-box|border-box;
@neelotpal.dey
V. Layout Properties
@neelotpal.dey
A. Display Properties
@neelotpal.dey
1. display
 - Description: Specifies the display behavior of an element
 - Syntax: display: inline|block|inline-block|flex|inline-
flex|grid|inline-grid|none;
@neelotpal.dey
2. visibility
 - Description: Specifies whether an element is visible or
hidden
 - Syntax: visibility: visible|hidden|collapse;
@neelotpal.dey
3. overflow
 - Description: Specifies how to handle content that overflows
its container
 - Syntax: overflow: visible|hidden|scroll|auto;
@neelotpal.dey
B. Positioning Properties
@neelotpal.dey
1. position
 - Description: Specifies the positioning method for an element
 - Syntax: position: static|relative|absolute|fixed|sticky;
@neelotpal.dey
2. top, right, bottom, left
 - Description: Used with position properties to specify the
position offset
 - Syntax: top/right/bottom/left: auto|length-value|percentage;
@neelotpal.dey
3. z-index
 - Description: Specifies the stack order of positioned elements
 - Syntax: z-index: auto|integer;
@neelotpal.dey
4. float
 - Description: Specifies how an element should float
 - Syntax: float: none|left|right;
@neelotpal.dey
5. clear
 - Description: Specifies which sides of an element should
allow floating elements
 - Syntax: clear: none|left|right|both;
@neelotpal.dey
C. Flexbox Properties
@neelotpal.dey
1. display: flex
 - Description: Defines a flex container
 - Syntax: display: flex|inline-flex;
@neelotpal.dey
2. flex-direction
 - Description: Specifies the direction of flex items
 - Syntax: flex-direction: row|row-reverse|column|column-
reverse;
@neelotpal.dey
3. flex-wrap
 - Description: Specifies whether flex items should wrap or not
 - Syntax: flex-wrap: nowrap|wrap|wrap-reverse;
@neelotpal.dey
4. justify-content
 - Description: Aligns flex items along the main axis
 - Syntax: justify-content: flex-start|flex-end|center|space-
between|space-around|space-evenly;
@neelotpal.dey
5. align-items
 - Description: Aligns flex items along the cross axis
 - Syntax: align-items: stretch|flex-start|flex-end|center|baseline;
@neelotpal.dey
6. align-content
 - Description: Aligns flex lines within a flex container
 - Syntax: align-content: flex-start|flex-end|center|space-
between|space-around|stretch;
@neelotpal.dey
7. flex-grow
 - Description: Specifies how much a flex item will grow
relative to the rest
 - Syntax: flex-grow: number;
@neelotpal.dey
8. flex-shrink
 - Description: Specifies how much a flex item will shrink
relative to the rest
 - Syntax: flex-shrink: number;
@neelotpal.dey
9. flex-basis
 - Description: Specifies the initial length of a flex item
 - Syntax: flex-basis: auto|length-value;
@neelotpal.dey
10. order
 - Description: Specifies the order of flex items
 - Syntax: order: integer;
@neelotpal.dey
D. Grid Properties
@neelotpal.dey
1. display: grid
 - Description: Defines a grid container
 - Syntax: display: grid|inline-grid;
@neelotpal.dey
2. grid-template-columns
 - Description: Specifies the sizes of the columns in a grid
layout
 - Syntax: grid-template-columns: value...; /* <track-size>... |
<line-name>... */
@neelotpal.dey
3. grid-template-rows
 - Description: Specifies the sizes of the rows in a grid layout
 - Syntax: grid-template-rows: value...; /* <track-size>... | <line-
name>... */
@neelotpal.dey
4. grid-gap
 - Description: Specifies the gaps between rows and columns
 - Syntax: grid-gap: <row-gap> <column-gap>;
@neelotpal.dey
5. grid-column
 - Description: Specifies which grid column(s) an item should
span
 - Syntax: grid-column: <start-line> / <end-line>;
@neelotpal.dey
6. grid-row
 - Description: Specifies which grid row(s) an item should span
 - Syntax: grid-row: <start-line> / <end-line>;
@neelotpal.dey
7. grid-area
 - Description: Specifies a grid item's position and size within
the grid
 - Syntax: grid-area: <row-start> / <column-start> / <row-end>
/ <column-end>;
@neelotpal.dey
8. justify-items
 - Description: Aligns grid items along the inline (row) axis
 - Syntax: justify-items: start|end|center|stretch;
@neelotpal.dey
9. align-items
 - Description: Aligns grid items along the block (column) axis
 - Syntax: align-items: start|end|center|stretch;
@neelotpal.dey
VI. Transformation and
Transition Properties
@neelotpal.dey
A. Transform Properties
@neelotpal.dey
1. transform
 - Description: Applies a 2D or 3D transformation to an element
 - Syntax: transform: none|transform-functions;
@neelotpal.dey
2. transform-origin
 - Description: Specifies the origin of transformation for an
element
 - Syntax: transform-origin: x-value y-value z-value;
@neelotpal.dey
3. transform-style
 - Description: Specifies how nested elements are rendered in
3D space
 - Syntax: transform-style: flat|preserve-3d;
@neelotpal.dey
B. Transition Properties
@neelotpal.dey
1. transition
 - Description: A shorthand property for setting all transition
properties
 - Syntax: transition: property duration timing-function delay;
@neelotpal.dey
2. transition-property
 - Description: Specifies the name(s) of CSS properties to
transition
 - Syntax: transition-property: none|property-name|all;
@neelotpal.dey
3. transition-duration
 - Description: Specifies the duration of the transition effect
 - Syntax: transition-duration: time;
@neelotpal.dey
4. transition-timing-function
 - Description: Specifies the timing function for the transition
effect
 - Syntax: transition-timing-function: ease|linear|ease-in|ease-
out|ease-in-out|cubic-bezier()|steps();
@neelotpal.dey
5. transition-delay
 - Description: Specifies the delay before the transition effect
starts
 - Syntax: transition-delay: time;
@neelotpal.dey
VII. Animation
Properties
@neelotpal.dey
A. @keyframes
 - Description: Defines the animation sequence
 - Syntax: @keyframes animation-name { /* keyframe rules */ }
@neelotpal.dey
B. animation-name
 - Description: Specifies the name of the @keyframes animation
 - Syntax: animation-name: animation-name;
@neelotpal.dey
C. animation-duration
 - Description: Specifies the duration of the animation
 - Syntax: animation-duration: time;
@neelotpal.dey
D. animation-timing-function
 - Description: Specifies the timing function for the animation
 - Syntax: animation-timing-function: ease|linear|ease-in|ease-
out|ease-in-out|cubic-bezier()|steps();
@neelotpal.dey
E. animation-delay
 - Description: Specifies the delay before the animation starts
 - Syntax: animation-delay: time;
@neelotpal.dey
F. animation-iteration-count
 - Description: Specifies the number of times the animation
should repeat
 - Syntax: animation-iteration-count: infinite|number;
@neelotpal.dey
G. animation-direction
 - Description: Specifies whether the animation should play
forwards, backwards, or alternate
 - Syntax: animation-direction: normal|reverse|alternate|alternate-
reverse;
@neelotpal.dey
H. animation-fill-mode
 - Description: Specifies how to apply styles before and after the
animation
 - Syntax: animation-fill-mode: none|forwards|backwards|both;
@neelotpal.dey
I. animation-play-state
 - Description: Specifies whether the animation is running or
paused
 - Syntax: animation-play-state: paused|running;
@neelotpal.dey
VIII. List and Table
Properties
@neelotpal.dey
A. List Properties
@neelotpal.dey
1. list-style-type
 - Description: Specifies the type of list-item marker
 - Syntax: list-style-type: disc|circle|square|decimal|lower-
roman|upper-roman|...;
@neelotpal.dey
2. list-style-image
 - Description: Specifies an image as the list-item marker
 - Syntax: list-style-image: none|url("image-path");
@neelotpal.dey
3. list-style-position
 - Description: Specifies where the list-item marker should be
positioned
 - Syntax: list-style-position: inside|outside;
@neelotpal.dey
B. Table Properties
@neelotpal.dey
1. border-collapse
 - Description: Specifies whether table borders should be
collapsed into a single border
 - Syntax: border-collapse: separate|collapse;
@neelotpal.dey
2. border-spacing
 - Description: Specifies the distance between the borders of
adjacent cells
 - Syntax: border-spacing: horizontal-value vertical-value;
@neelotpal.dey
3. caption-side
 - Description: Specifies where the table caption should be
placed
 - Syntax: caption-side: top|bottom;
@neelotpal.dey
4. empty-cells
 - Description: Specifies how to display borders and
backgrounds of empty cells
 - Syntax: empty-cells: show|hide;
@neelotpal.dey
5. table-layout
 - Description: Specifies the layout algorithm for rendering
tables
 - Syntax: table-layout: auto|fixed;
@neelotpal.dey
IX. User Interface
Properties
@neelotpal.dey
A. Cursor
 - Description: Spec

Más contenido relacionado

Similar a Introduction to CSS and all properties.pptx

IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designingpkaviya
 
Cordova training - Day 2 Introduction to CSS 3
Cordova training - Day 2 Introduction to CSS 3Cordova training - Day 2 Introduction to CSS 3
Cordova training - Day 2 Introduction to CSS 3Binu Paul
 
Doing More With Less
Doing More With LessDoing More With Less
Doing More With LessDavid Engel
 
Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...
Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...
Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...Creative Design and Multimedia Insitute
 
Make Css easy : easy tips for css
Make Css easy : easy tips for cssMake Css easy : easy tips for css
Make Css easy : easy tips for cssshabab shihan
 
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassBringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassClaudina Sarahe
 
Formatting text with CSS
Formatting text with CSSFormatting text with CSS
Formatting text with CSSNicole Ryan
 
Big Design Conference: CSS3
Big Design Conference: CSS3 Big Design Conference: CSS3
Big Design Conference: CSS3 Wynn Netherland
 
CSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsCSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsSanjoy Kr. Paul
 
Ppt of web designing
Ppt of web designingPpt of web designing
Ppt of web designingprab5
 
Write LESS. DO more.
Write LESS. DO more.Write LESS. DO more.
Write LESS. DO more.Eugene Nor
 
Customizing the look and-feel of DSpace
Customizing the look and-feel of DSpaceCustomizing the look and-feel of DSpace
Customizing the look and-feel of DSpaceBharat Chaudhari
 

Similar a Introduction to CSS and all properties.pptx (20)

IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
 
Css
CssCss
Css
 
Css
CssCss
Css
 
html-css
html-csshtml-css
html-css
 
Cordova training - Day 2 Introduction to CSS 3
Cordova training - Day 2 Introduction to CSS 3Cordova training - Day 2 Introduction to CSS 3
Cordova training - Day 2 Introduction to CSS 3
 
Doing More With Less
Doing More With LessDoing More With Less
Doing More With Less
 
Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...
Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...
Learn CSS Font Text from this pdf, provided by Creative Design and Multimedia...
 
Less css
Less cssLess css
Less css
 
Sass Essentials
Sass EssentialsSass Essentials
Sass Essentials
 
Make Css easy : easy tips for css
Make Css easy : easy tips for cssMake Css easy : easy tips for css
Make Css easy : easy tips for css
 
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and CompassBringing sexy back to CSS: SASS/SCSS, LESS and Compass
Bringing sexy back to CSS: SASS/SCSS, LESS and Compass
 
Formatting text with CSS
Formatting text with CSSFormatting text with CSS
Formatting text with CSS
 
Pfnp slides
Pfnp slidesPfnp slides
Pfnp slides
 
Css
CssCss
Css
 
Web Development.pptx
Web Development.pptxWeb Development.pptx
Web Development.pptx
 
Big Design Conference: CSS3
Big Design Conference: CSS3 Big Design Conference: CSS3
Big Design Conference: CSS3
 
CSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and ConsCSS Less framework overview, Pros and Cons
CSS Less framework overview, Pros and Cons
 
Ppt of web designing
Ppt of web designingPpt of web designing
Ppt of web designing
 
Write LESS. DO more.
Write LESS. DO more.Write LESS. DO more.
Write LESS. DO more.
 
Customizing the look and-feel of DSpace
Customizing the look and-feel of DSpaceCustomizing the look and-feel of DSpace
Customizing the look and-feel of DSpace
 

Último

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
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 

Último (20)

Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
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
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
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
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 

Introduction to CSS and all properties.pptx