Selain Embedded kita bisa juga menggunakan CSS dengan cara Inline Style Sheet. Kode dibawah saya tambahkan dengan Border Style untuk Tag p untuk paragraf.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE HTML> <html> <head> <title> Inline Style Sheet emerer.com </title> </head> <body> <h1> Belajar CSS di emerer.com </h1> <p style="border : dotted"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border dotted </p> <p style="border : dashed"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border dashed </p> <p style="border : solid"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border solid </p> <p style="border : double"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border double </p> <p style="border : groove"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border groove </p> <p style="border : ridge"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border ridge </p> <p style="border : inset"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border inset </p> <p style="border : outset"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border outset </p> <p style="border : none"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border none </p> <p style="border : hidden"> Ini adalah salah satu contoh "Inline Style Sheet" dengan style border hidden </p> <p> Salam Sukses ! </p> </body> </html> |