CSS tutorial
การใช้ CSS ใน HTML
จะใส่เป็นลิ้งค์ของไฟล์ก็ได้ หรือเขียนลงในไฟล์นั้นเลยก็ได้ ให้ใส่ไว้ตรง <head> ... </head> เช่น
<html>
<head>
<title> ใส่ชื่อหัวเรื่อง (title)ที่นี่ </title>
<style type="text/css">
body { color: black; background: white; }
</style>
</head>