Ngôn ngữ CSS - CSS bên ngoại

CSS bên ngoại ((liên kết với một file CSS bên ngoài)

<html> 
<head> <title>Ví dụ</title> 
<link rel="stylesheet" type="text/css" href="filename.css" /> 

</head> 
<body> 
<p>^_^ Welcome To MyWebsite ^_^</p> 
</body> 
</html>

Sau đó hãy tạo một file style.css lưu cùng thư mục với file htm trên với nội dung:

body { background-color:#000 } 
p{ color:White }