Page 57 - Modul Web
P. 57
<link rel="stylesheet" type="text/css" href="file css anda">
Contoh penulisan CSS menggunakan External Style :
Untuk membuat contoh penulisan CSS dengan External style siapkan satu buah file html dan
satu buah file css. di sini saya membuat sebuah file dengan nama index.html dan style.css
Gambar 24 Belajar CSS Dasar Cara Penulisan CSS
index.html
<!DOCTYPE html>
<html>
<head>
<title>Penulisan CSS dengan External Style</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="box">
57