Stil dosyasini degisik yontemler ile sayfamiza dahil edebiliriz. Sayfa renklendirme ornegimiz ile bunu inceleyelim.
1- Element icinde stil (style) ozelligi
<p style="color:orange">Yazimda burada</p>
2- Html icerisinde stil (style) ozelligi
<style type="text/css">
body{background-color:black}
</style>
3- Stil (style) dosyalarini belgeye ithal etme
<style type="text/css">
<--
@import url("renk.css");
-->
</style>
4- Link Elementiyle Baglama
<link rel="stylesheet" type="text/css" href="renk.css" />
* <head></head> taglari arasina yazilmalidir