Buat file dengan nama: style.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
body{ background: #888888; } h1 { font-size: 30pt; color: #FFFF00; } p { color: aqua; font-weight: bold; text-decoration: underline; } |
file ke dengan nama: cara-memanggil-css.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<!DOCTYPE HTML> <html> <head> <title> Linked Style Sheet emerer.com </title> <link rel="stylesheet" href="style.css" type="text/css"> </head> <body> <h1> Belajar CSS di emerer.com </h1> <p> Ini adalah salah satu contoh "Linked Style Sheet" </p> <p> Salam Sukses ! </p> </body> </html> |
1 Comment
Terima kasih tutorialnya mas.