BSI Purwokerto - Belajar Membuat Web (Part 5)
Yuk ... Belajar bersama cara membuat web, ini ada lanjutannya, dan jangan lupa selalu aktifkan XAMPP ... CSS (Cascading Style Sheet) -Inline CSS -Internal CSS -Eksternal CSS INLINE CSS -berada dalam sebuah tag (method: style) <p style=”font-size:12px;color:red”> AMIK BSI PURWOKERTO <p/p> INTERNAL CSS -berada dalam satu halaman/file website <style type=”text/css”> P { Font-size:12px; Color:red; } </style> <body> ....... </body> EKSTERNAL CSS -membentuk file tersendiri berekstensi (.css) -pemanggilan file css diantara tag <head> <head> <link rel=”stylesheet” type=”text/css” href=”style.css”> </head> PHP => Hypertext Preprocessor PHP => Server side (sisi server) / komputer server, bukan client side (sisi klien) PHP => Untuk pemrosesan data/manipulasi data Syntax PHP : <?