1 / 11

Pertemuan IX

Zanial Mazalisa, S.Kom.,M.M http://blog.binadarma.ac.id/nayel. Pertemuan IX. Cascading Style Sheets (CSS). CSS adalah suatu bahasa yang digunakan untuk mengatur tampilan suatu website, baik tata letaknya, jenis huruf, warna, dan semua yang berhubungan dengan tampilan.

Download Presentation

Pertemuan IX

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Zanial Mazalisa, S.Kom.,M.M http://blog.binadarma.ac.id/nayel Pertemuan IX

  2. Cascading Style Sheets (CSS) • CSS adalah suatu bahasa yang digunakan untuk mengatur tampilan suatu website, baik tata letaknya, jenis huruf, warna, dan semua yang berhubungan dengan tampilan. • Pada umumnya, CSS tu digunakan untuk menformat halaman web yang ditulis dengan HTML

  3. CSS 3 Cara Implementasi CSS • Inline Style • Internal Style Sheet atau Embed Style • External Style Sheet

  4. Inline Style • Menjadiatributdalam tag HTML • Atributnyaadalah style • Cara pendefinisiannyaadalah style=“property-1 :nilai ; property-2:nilai;….property-n:nilai” Contoh ;

  5. Contoh 1 <html> <head> <title>Test CSS Inline Style 1</title> </head> <body style="color:blue; background-color:yellow"> <p style="text-align:center;text-transform:uppercase; color:red;font-weight:bold">Pemrograman</p>Web </body> </html>

  6. Contoh 2 <html> <head> <title>Test CSS Inline Style 2</title> </head> <body> <a href="http://www.google.com">Google</a><br> <a href="http://www.google.com" style="text-decoration:none">Google</a> </body> </html> Bergaris TdkBergaris

  7. Internal Style Sheet • Style yang diletakkan dalam tag HEAD • Cara pendefinisiannya adalah; <style type=“text/css”> … … </style> • Contoh;

  8. Contoh CSS Internal 1 <html> <head> <style type="text/css"> h1 {background-color:Blue;} p {background-color:red;} </style> </head> <body> <h1>Header berlatar belakang</h1> <p>Paragraph dengan latar belakang</p> </html>

  9. Contoh 2 <html> <head> <style type="text/css"> p.serif{font-family:"Times New Roman", Times, serif} p.sansserif{font-family:Arial, Helvetica, sans-serif} </style> </head> <body> <h1>CSS font-family</h1> <p class="serif">This is a paragraph, shown in the Times New Roman font.</p> <p class="sansserif">This is a paragraph, shown in the Arial font.</p> </body> </html>

  10. External Style Sheet • Style CSS yang berada terpisah pada sebuah file .css • Dipanggil dari dalam dokument HTML • Format penulisan memanggil file .css < link rel="StyleSheet" href="namafile.css" type="text/css"> • Contoh;

  11. Contoh External Style • File .css nama file = paragraf_warna.css • File HTML p {color: red;} body {background-color: yellow;} <html> <head> <title>title/judul halaman website anda</title> <link rel="StyleSheet" href="paragraf_warna.css" type="text/css"> </head> <body> <p>Contoh paragraf yang berwarna merah</p> </body> </html>

More Related