<!DOCTYPE html> <html> <head> <style> p.uppercase { text-transform: uppercase; } p.lowercase { text-transform: lowercase; } p.capitalize { text-transform: capitalize; } </style> </head> <body> <p class="uppercase">tümü küçük harf ile yazılmıştır.</p> <p class="lowercase">TÜMÜ BÜYÜK HARF İLE YAZILMIŞTIR.</p> <p class="capitalize">tümü küçük harf ile yazılmıştır.</p> </body> </html>