SlideShare uma empresa Scribd logo
1 de 46
Baixar para ler offline
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
h1 {color:blue;}



       ©2009 :: Pemrograman Web :: Sandhika Galih,
     Teknik Informatika – Universitas Pasundan Bandung
<style>




  <link>
@import
    ©2009 :: Pemrograman Web :: Sandhika Galih,
  Teknik Informatika – Universitas Pasundan Bandung
<style>
                                   <head>




   ©2009 :: Pemrograman Web :: Sandhika Galih,
 Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
<link>




   ©2009 :: Pemrograman Web :: Sandhika Galih,
 Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
•
    body {color:black}
•
    p {font-family:"sans serif"}
•
    p {text-align:center;color:red}
•
    p {
      text-align:center;
      color:black;
      font-family:arial
    }
•




    h1   {   color:green;   }
    h3   {   color:green;   }
    h5   {   color:green;   }
    p    {   color:green;   }


    h1,h3,h5,p { color:green; }
•

•
•

•



    .merah {color:red;}
    .right {text-align:right;}
    .left {text-align:left;}
•

•
•

•
•


    #merah {color:red;}
    #right {text-align:right;}
    #left {text-align:left;}
•

•
    background-color
    background-image
    background-repeat
    background-attachment
    background-position
•




    body   {background-color:aliceblue;}
    h1     {background-color:rgb(0,255,0);}
    p      {background-color:#cccc66;}
    div    {background-color:#cc9966;}
•




    body {background-image:url(../images/paper.gif);}
•
                                           background-
    image


    repeat-x
    repeat-y
    no-repeat



    body {
      background-image:url(../images/gradient.png);
      background-repeat:repeat-x;
    }
•

    background-image



    top left
    top center
    top right
    center left
    center center
    center right
    bottom left
    bottom center
    bottom right
body {
      background-image:url(../images/tree.png);
      background-repeat:no-repeat;
      background-position:top right;
    }


body {
  background:url(../images/tree.png) no-repeat top right;
}
•

    body {color:blue;}
    h1   {color:#00ff00;}
    p    {color:rgb(255,0,0);}

    h1    {text-align:center}
    .date {text-align:right}
    .main {text-align:justify}

    p   {text-indent: 50px;}
a    {text-decoration:none;}
h1   {text-decoration:overline;}
h2   {text-decoration:line-through;}
h3   {text-decoration:underline;}
h4   {text-decoration:blink;}


.hurufbesar   {text-transform:uppercase;}
.hurufkecil   {text-transform:lowercase;}
.hurufkapital {text-transform:capitalize;}
p    {font-family:"Times New Roman“,Arial,Serif}



.normal     {font-style:normal;}
.italic     {font-style:italic;}


body {font-size:100%;}
h1   {font-size:20px;}
p    {font-size:0.8em;} /* 1em = 16px */


h1    {font-weight:normal;}
p     {font-weight:bold;}
height:100px;
width:200px;




             ©2009 :: Pemrograman Web :: Sandhika Galih,
           Teknik Informatika – Universitas Pasundan Bandung
•
    <div>



              ©2009 :: Pemrograman Web :: Sandhika Galih,
            Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
• margin:25px 50px 75px 100px;




• margin:25px 50px 75px;




• margin:25px 50px;



• margin:25px;
                        ©2009 :: Pemrograman Web :: Sandhika Galih,
                      Teknik Informatika – Universitas Pasundan Bandung
• margin:auto;


•

    margin:10px 0px 5px -10px;




                          ©2009 :: Pemrograman Web :: Sandhika Galih,
                        Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
• padding:25px 50px 75px 100px;




• padding:25px 50px 75px;




• padding:25px 50px;



• padding:25px;
                         ©2009 :: Pemrograman Web :: Sandhika Galih,
                       Teknik Informatika – Universitas Pasundan Bandung
• padding:auto;


•




                    ©2009 :: Pemrograman Web :: Sandhika Galih,
                  Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
border-style
 border-width
 border-color



border:                               ;



          border:solid 2px green;
                  ©2009 :: Pemrograman Web :: Sandhika Galih,
                Teknik Informatika – Universitas Pasundan Bandung
border:solid 2px green;


                                           border:dotted 2px green;

                                           border:dashed 2px green;


                                           border:double 7px green;


                                           border:groove 7px green;


                                           border:ridge 7px green;

  ©2009 :: Pemrograman Web :: Sandhika Galih,
Teknik Informatika – Universitas Pasundan Bandung
•

•

•

•
    • float:left;
    • float:right;
•
    • clear:both;
•



                       ©2009 :: Pemrograman Web :: Sandhika Galih,
                     Teknik Informatika – Universitas Pasundan Bandung
•
•
•
    •   <selector>:link{color:red;}
    •   <selector>:visited{color:blue;}
    •   <selector>:hover{color:green;}
    •   <selector>:active{color:orange;}
•

    a:hover
    {
      color:red;
      text-decoration:underline;
    }

                           ©2009 :: Pemrograman Web :: Sandhika Galih,
                         Teknik Informatika – Universitas Pasundan Bandung
•

•




      ©2009 :: Pemrograman Web :: Sandhika Galih,
    Teknik Informatika – Universitas Pasundan Bandung

Mais conteúdo relacionado

Destaque

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Destaque (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

CSS

  • 1.
  • 2. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 3. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 4. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 5. h1 {color:blue;} ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 6. <style> <link> @import ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 7. <style> <head> ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 8. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 9. <link> ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 10. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 11.
  • 12. body {color:black} • p {font-family:"sans serif"} • p {text-align:center;color:red} • p { text-align:center; color:black; font-family:arial }
  • 13. h1 { color:green; } h3 { color:green; } h5 { color:green; } p { color:green; } h1,h3,h5,p { color:green; }
  • 14. • • • • .merah {color:red;} .right {text-align:right;} .left {text-align:left;}
  • 15.
  • 16. • • • • • #merah {color:red;} #right {text-align:right;} #left {text-align:left;}
  • 17.
  • 18. • • background-color background-image background-repeat background-attachment background-position
  • 19. body {background-color:aliceblue;} h1 {background-color:rgb(0,255,0);} p {background-color:#cccc66;} div {background-color:#cc9966;}
  • 20.
  • 21. body {background-image:url(../images/paper.gif);}
  • 22. background- image repeat-x repeat-y no-repeat body { background-image:url(../images/gradient.png); background-repeat:repeat-x; }
  • 23. background-image top left top center top right center left center center center right bottom left bottom center bottom right
  • 24. body { background-image:url(../images/tree.png); background-repeat:no-repeat; background-position:top right; } body { background:url(../images/tree.png) no-repeat top right; }
  • 25. body {color:blue;} h1 {color:#00ff00;} p {color:rgb(255,0,0);} h1 {text-align:center} .date {text-align:right} .main {text-align:justify} p {text-indent: 50px;}
  • 26. a {text-decoration:none;} h1 {text-decoration:overline;} h2 {text-decoration:line-through;} h3 {text-decoration:underline;} h4 {text-decoration:blink;} .hurufbesar {text-transform:uppercase;} .hurufkecil {text-transform:lowercase;} .hurufkapital {text-transform:capitalize;}
  • 27. p {font-family:"Times New Roman“,Arial,Serif} .normal {font-style:normal;} .italic {font-style:italic;} body {font-size:100%;} h1 {font-size:20px;} p {font-size:0.8em;} /* 1em = 16px */ h1 {font-weight:normal;} p {font-weight:bold;}
  • 28.
  • 29. height:100px; width:200px; ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 30. <div> ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 31. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 32. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 33. • margin:25px 50px 75px 100px; • margin:25px 50px 75px; • margin:25px 50px; • margin:25px; ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 34. • margin:auto; • margin:10px 0px 5px -10px; ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 35. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 36. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 37. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 38. • padding:25px 50px 75px 100px; • padding:25px 50px 75px; • padding:25px 50px; • padding:25px; ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 39. • padding:auto; • ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 40. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 41. ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 42. border-style border-width border-color border: ; border:solid 2px green; ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 43. border:solid 2px green; border:dotted 2px green; border:dashed 2px green; border:double 7px green; border:groove 7px green; border:ridge 7px green; ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 44. • • • • • float:left; • float:right; • • clear:both; • ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 45. • • • • <selector>:link{color:red;} • <selector>:visited{color:blue;} • <selector>:hover{color:green;} • <selector>:active{color:orange;} • a:hover { color:red; text-decoration:underline; } ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung
  • 46. • • ©2009 :: Pemrograman Web :: Sandhika Galih, Teknik Informatika – Universitas Pasundan Bandung