SlideShare a Scribd company logo
1 of 12
Web-Designing (2)
CSS Basic Coding
A
Presentation by,
MD. Rabiul Islam (robi)
CSS
External Style-Sheet
The style sheet which is created individually and attached with HTML file by a link is
called external Style Sheet.
How To Add…………………..
<html>
<head>
<link rel=“stylesheet” type=“text/css” herf=“styleSheetname.css”/>
</head>
This Style Sheet is totally separated from main html file. This file is attached later just
like a link.
Image & link…
To set a image in a position….. Link effects……..
Img { float : left a link { color}
Width: 120px a hover { font-family , bgcolor,
border:1px solid black underline , font-size }
margin: 0 px 0 px 20px 26px
padding: 12px
text-align: the picture details } Adding Image before a line……………..
Input Box Effects…………………… h1: before/after { content : url (bird_pic.JPG)}
Input: Focus { background-color:#00ff00}
Paragraph first Letter/Line………………….. Image galary………………………..
P: first-letter { color: #00ff00 ; font-size: xx-large }
P: first-line { color: #00ff00 ; font-size: small-caps }
Internal Style Sheet
The Style Sheet which is done in the head in the option of any html project then its called Internal Style
Sheet.
How To Add…………..
<html>
<head>
Body {background-color; green} a:link {color:green}
h1 { color : maroon; font-size:22 pt} a:visited {color:yellow}
Hr {color :blue} a:active {color:black}
P {margin-left:15 px; font-size:26 pt} a.hover {color:red}
</head>
(N:B… at every option different types of codes will make different changes)
In-Line Style Sheet
IF the Style sheet is used in the Html Code line then its called in-line Style
Sheet.
How to Add……
<p style=“color:green”;”margin-left:2px”;”font-size:30pt”>
Here is the text about details
</p>
In-line Style is used for the style of a particular part of a html project.
Background color & images
Background ………………………… Background image…………………………
<head> <head>
<style type=‘’text/css”> <style type=“text/css”>
**Body body
{background-color : yellow} or,… {background-repeat: x ,y, no repeat}
(background-color : #ooffoo} or…. {background-attachment : fixed}
(background-color : rgb(255,0,0,255} {background-position : center, 50 px:60px}
</style>
</head> Adding image on list………………..
ul
Adding.. Normal image…………… { list-style-image:url(‘picname.jpg’);
<img src=“pic.jpg” height”225” width”90”> list-style-type: square; }
Img
{Height: 200px width:240px….. Height/width: auto }
This tag is for setting the height or width of a pic in a web page. If its “auto” then the pic will show its Original size in
the page.
Text Position
Fixed position……..
P { position: fixed; top:3cm; left:2cm;}
Relative Position………………......
P { position: relative; left: 2px,-2px; top:5px,-5px }
N:B.. This position depends on the same named tag…… and the relation occurs only with the last tag… !!!
Absolute Position………………..
Img { position : absolute; left:5px; top:8px; z-index:-1 }
N:B…. To set a image behind paragraph.
To set a image Shape/position………
Img { Position: absolute; clip:rect(2px,60px,20px,1opx);}
Scroll Bar/Non scroll bar box
Two side Overflow……
Div {background-color:#00ffff; width:100px; height:200px; overflow : Scroll }
Only right side overflow…
Div { background-color:#00fff; width:200px; height:300px; overflow: auto }
A text box Without color……….
Div { background-color:#00fff; width:200px; height:300px; overflow: hidden }
Different types of cursor effect :
<span style=“cursor:auto/pointer/move..etc..”>text here</span>
Creating.. Homepage
..
Text….
P.ex {color:#ooffoo; margin-left:22px} <span>T</span>ime is valuable. Span {float,width,font
size,font-style ,line-height}
<p class=“ex”>This is the way to mark a particular part or line of html with a symbol like “ex” and making
the style only for that marked part.
The tools that can modify a line or text……………
Font-size: 20pt / em /% Margin-left/right/upper/bottom:
Font-style :normal /Italic /oblique 20px ,25% , 2.5cm ,0.6em
Font-weight: normal/lighter/bold/900
Font-variant: normal/small-caps Text-align: left , right , Justify
…………………………………………………………………..
latter-spacing: 2px,-3px word-spacing: 30px Text-decoration: blink , overline , underline
white-space: no wrap
line-spacing: 90%,40% , Text-transformation: capitalized , uppercase , overcase , Text-indent: 50 px
Paragraph width/height in page….……. Max-height/width: 80px,80%
Min-height/width: 20px,20% quotes {“—” ”!” “~” } , Display : None
Box……
<head>
Div Border-color: green , der, #00ff00 , rgb(00,003,3335)
{ gackground- color: green
width: 70% Box-outline: #00ff00 dotted dashed
Padding: 10px
Border:5px solid grey Padding-top/bottom/right/left
Margin: 0px :25% 25% 50% 50%
text-align: center/left. Border style: none/dashed/solid/dobule/grey.
Position: absolute/…. Border-top/bottom/left/right/-style:
dotted/solid/dashed.
</head>
N:B-border color & all size is works by default , when its given together.
Follow us…..
<head>
<style type=“text/ css”>
li { display : inline}
</style>
</head>
<p> Follow us from below…. </p>
<ul>
<li><a herf=‘’facebook.com/rabiulrobi79/follow” img src=“Fblogo.jpg” width=“18” height=“14”>FB</a> </li>
<li><a herf=‘’twitter.com/rabiulrobi67/follow” img src=‘’twitterlogo.png width=“14” height=“12”>twitter</a> <li>
N:B.. For inline Display tag the links will appeared side by side in a line.

More Related Content

What's hot

What's hot (20)

HTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts BasicsHTML, CSS and Java Scripts Basics
HTML, CSS and Java Scripts Basics
 
Basic html
Basic htmlBasic html
Basic html
 
Html
HtmlHtml
Html
 
Introduction html
Introduction htmlIntroduction html
Introduction html
 
Basic Details of HTML and CSS.pdf
Basic Details of HTML and CSS.pdfBasic Details of HTML and CSS.pdf
Basic Details of HTML and CSS.pdf
 
HTML
HTMLHTML
HTML
 
Html
HtmlHtml
Html
 
HTML CSS | Computer Science
HTML CSS | Computer ScienceHTML CSS | Computer Science
HTML CSS | Computer Science
 
Html tags describe in bangla
Html tags describe in banglaHtml tags describe in bangla
Html tags describe in bangla
 
Html
HtmlHtml
Html
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
 
Introduction to html course digital markerters
Introduction to html course digital markertersIntroduction to html course digital markerters
Introduction to html course digital markerters
 
Intro to HTML
Intro to HTMLIntro to HTML
Intro to HTML
 
HTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - IHTML(5) and CSS(3) for beginners - I
HTML(5) and CSS(3) for beginners - I
 
Web Page Designing Using HTML
Web Page Designing Using HTMLWeb Page Designing Using HTML
Web Page Designing Using HTML
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - Comments
 
HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2HTML Lecture Part 1 of 2
HTML Lecture Part 1 of 2
 
Html basics-auro skills
Html basics-auro skillsHtml basics-auro skills
Html basics-auro skills
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 

Viewers also liked

Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...
Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...
Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...
Teemu Leppänen
 
Adobe Photoshop Basics - Session 1
Adobe Photoshop Basics - Session 1Adobe Photoshop Basics - Session 1
Adobe Photoshop Basics - Session 1
xneptune
 
Internet of Things
Internet of ThingsInternet of Things
Internet of Things
Vala Afshar
 

Viewers also liked (12)

Internet of Things
Internet of ThingsInternet of Things
Internet of Things
 
Iottoolkit osiot
Iottoolkit osiotIottoolkit osiot
Iottoolkit osiot
 
Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...
Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...
Mobile Agents for the Integration of Wireless Sensor Networks and the Interne...
 
Web Design Trends for 2014
Web Design Trends for 2014Web Design Trends for 2014
Web Design Trends for 2014
 
Html, CSS & Web Designing
Html, CSS & Web DesigningHtml, CSS & Web Designing
Html, CSS & Web Designing
 
Ppt on online voting
Ppt on online votingPpt on online voting
Ppt on online voting
 
Photoshop tools and their functions
Photoshop tools and their functionsPhotoshop tools and their functions
Photoshop tools and their functions
 
Adobe Photoshop Basics - Session 1
Adobe Photoshop Basics - Session 1Adobe Photoshop Basics - Session 1
Adobe Photoshop Basics - Session 1
 
THE INTERNET OF THINGS
THE INTERNET OF THINGSTHE INTERNET OF THINGS
THE INTERNET OF THINGS
 
Internet of Things and its applications
Internet of Things and its applicationsInternet of Things and its applications
Internet of Things and its applications
 
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-gInternet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
Internet-of-things- (IOT) - a-seminar - ppt - by- mohan-kumar-g
 
Internet of Things
Internet of ThingsInternet of Things
Internet of Things
 

Similar to Web designing (2) - CSS Basic Coding

cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
tutorialsruby
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
Tesfaye Yenealem
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
Afaq Siddiqui
 

Similar to Web designing (2) - CSS Basic Coding (20)

Stylesheets for Online Help - Scott DeLoach, ClickStart
Stylesheets for Online Help - Scott DeLoach, ClickStartStylesheets for Online Help - Scott DeLoach, ClickStart
Stylesheets for Online Help - Scott DeLoach, ClickStart
 
CSS Cascade Style Sheet
CSS Cascade Style SheetCSS Cascade Style Sheet
CSS Cascade Style Sheet
 
html
htmlhtml
html
 
Lectuer html2
Lectuer  html2Lectuer  html2
Lectuer html2
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
 
cascadingstylesheets
cascadingstylesheetscascadingstylesheets
cascadingstylesheets
 
Html 3
Html   3Html   3
Html 3
 
Css introduction
Css  introductionCss  introduction
Css introduction
 
WebDesigning.pptx
WebDesigning.pptxWebDesigning.pptx
WebDesigning.pptx
 
Chapter 4a cascade style sheet css
Chapter 4a cascade style sheet cssChapter 4a cascade style sheet css
Chapter 4a cascade style sheet css
 
Introduction to css by programmerblog.net
Introduction to css by programmerblog.netIntroduction to css by programmerblog.net
Introduction to css by programmerblog.net
 
Html css
Html cssHtml css
Html css
 
CSS.pdf
CSS.pdfCSS.pdf
CSS.pdf
 
Html Tags
Html TagsHtml Tags
Html Tags
 
PHP HTML CSS Notes
PHP HTML CSS  NotesPHP HTML CSS  Notes
PHP HTML CSS Notes
 
Css
CssCss
Css
 
Css
CssCss
Css
 
Html 2
Html   2Html   2
Html 2
 
Introduction to css & its attributes with syntax
Introduction to css & its attributes with syntaxIntroduction to css & its attributes with syntax
Introduction to css & its attributes with syntax
 
World wide web with multimedia
World wide web with multimediaWorld wide web with multimedia
World wide web with multimedia
 

Recently uploaded

Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Chandigarh Call girls 9053900678 Call girls in Chandigarh
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Sheetaleventcompany
 

Recently uploaded (20)

Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
Russian Call Girls in %(+971524965298  )#  Call Girls in DubaiRussian Call Girls in %(+971524965298  )#  Call Girls in Dubai
Russian Call Girls in %(+971524965298 )# Call Girls in Dubai
 
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
Low Sexy Call Girls In Mohali 9053900678 🥵Have Save And Good Place 🥵
 
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
valsad Escorts Service ☎️ 6378878445 ( Sakshi Sinha ) High Profile Call Girls...
 
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
𓀤Call On 7877925207 𓀤 Ahmedguda Call Girls Hot Model With Sexy Bhabi Ready Fo...
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service AvailableCall Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
Call Girls Ludhiana Just Call 98765-12871 Top Class Call Girl Service Available
 
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
VIP Model Call Girls NIBM ( Pune ) Call ON 8005736733 Starting From 5K to 25K...
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Rani Bagh Escort Service Delhi N.C.R.
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 

Web designing (2) - CSS Basic Coding

  • 1. Web-Designing (2) CSS Basic Coding A Presentation by, MD. Rabiul Islam (robi)
  • 2. CSS External Style-Sheet The style sheet which is created individually and attached with HTML file by a link is called external Style Sheet. How To Add………………….. <html> <head> <link rel=“stylesheet” type=“text/css” herf=“styleSheetname.css”/> </head> This Style Sheet is totally separated from main html file. This file is attached later just like a link.
  • 3. Image & link… To set a image in a position….. Link effects…….. Img { float : left a link { color} Width: 120px a hover { font-family , bgcolor, border:1px solid black underline , font-size } margin: 0 px 0 px 20px 26px padding: 12px text-align: the picture details } Adding Image before a line…………….. Input Box Effects…………………… h1: before/after { content : url (bird_pic.JPG)} Input: Focus { background-color:#00ff00} Paragraph first Letter/Line………………….. Image galary……………………….. P: first-letter { color: #00ff00 ; font-size: xx-large } P: first-line { color: #00ff00 ; font-size: small-caps }
  • 4. Internal Style Sheet The Style Sheet which is done in the head in the option of any html project then its called Internal Style Sheet. How To Add………….. <html> <head> Body {background-color; green} a:link {color:green} h1 { color : maroon; font-size:22 pt} a:visited {color:yellow} Hr {color :blue} a:active {color:black} P {margin-left:15 px; font-size:26 pt} a.hover {color:red} </head> (N:B… at every option different types of codes will make different changes)
  • 5. In-Line Style Sheet IF the Style sheet is used in the Html Code line then its called in-line Style Sheet. How to Add…… <p style=“color:green”;”margin-left:2px”;”font-size:30pt”> Here is the text about details </p> In-line Style is used for the style of a particular part of a html project.
  • 6. Background color & images Background ………………………… Background image………………………… <head> <head> <style type=‘’text/css”> <style type=“text/css”> **Body body {background-color : yellow} or,… {background-repeat: x ,y, no repeat} (background-color : #ooffoo} or…. {background-attachment : fixed} (background-color : rgb(255,0,0,255} {background-position : center, 50 px:60px} </style> </head> Adding image on list……………….. ul Adding.. Normal image…………… { list-style-image:url(‘picname.jpg’); <img src=“pic.jpg” height”225” width”90”> list-style-type: square; } Img {Height: 200px width:240px….. Height/width: auto } This tag is for setting the height or width of a pic in a web page. If its “auto” then the pic will show its Original size in the page.
  • 7. Text Position Fixed position…….. P { position: fixed; top:3cm; left:2cm;} Relative Position………………...... P { position: relative; left: 2px,-2px; top:5px,-5px } N:B.. This position depends on the same named tag…… and the relation occurs only with the last tag… !!! Absolute Position……………….. Img { position : absolute; left:5px; top:8px; z-index:-1 } N:B…. To set a image behind paragraph. To set a image Shape/position……… Img { Position: absolute; clip:rect(2px,60px,20px,1opx);}
  • 8. Scroll Bar/Non scroll bar box Two side Overflow…… Div {background-color:#00ffff; width:100px; height:200px; overflow : Scroll } Only right side overflow… Div { background-color:#00fff; width:200px; height:300px; overflow: auto } A text box Without color………. Div { background-color:#00fff; width:200px; height:300px; overflow: hidden } Different types of cursor effect : <span style=“cursor:auto/pointer/move..etc..”>text here</span>
  • 10. Text…. P.ex {color:#ooffoo; margin-left:22px} <span>T</span>ime is valuable. Span {float,width,font size,font-style ,line-height} <p class=“ex”>This is the way to mark a particular part or line of html with a symbol like “ex” and making the style only for that marked part. The tools that can modify a line or text…………… Font-size: 20pt / em /% Margin-left/right/upper/bottom: Font-style :normal /Italic /oblique 20px ,25% , 2.5cm ,0.6em Font-weight: normal/lighter/bold/900 Font-variant: normal/small-caps Text-align: left , right , Justify ………………………………………………………………….. latter-spacing: 2px,-3px word-spacing: 30px Text-decoration: blink , overline , underline white-space: no wrap line-spacing: 90%,40% , Text-transformation: capitalized , uppercase , overcase , Text-indent: 50 px Paragraph width/height in page….……. Max-height/width: 80px,80% Min-height/width: 20px,20% quotes {“—” ”!” “~” } , Display : None
  • 11. Box…… <head> Div Border-color: green , der, #00ff00 , rgb(00,003,3335) { gackground- color: green width: 70% Box-outline: #00ff00 dotted dashed Padding: 10px Border:5px solid grey Padding-top/bottom/right/left Margin: 0px :25% 25% 50% 50% text-align: center/left. Border style: none/dashed/solid/dobule/grey. Position: absolute/…. Border-top/bottom/left/right/-style: dotted/solid/dashed. </head> N:B-border color & all size is works by default , when its given together.
  • 12. Follow us….. <head> <style type=“text/ css”> li { display : inline} </style> </head> <p> Follow us from below…. </p> <ul> <li><a herf=‘’facebook.com/rabiulrobi79/follow” img src=“Fblogo.jpg” width=“18” height=“14”>FB</a> </li> <li><a herf=‘’twitter.com/rabiulrobi67/follow” img src=‘’twitterlogo.png width=“14” height=“12”>twitter</a> <li> N:B.. For inline Display tag the links will appeared side by side in a line.