Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
CSS Examples
Keywords : CSS example with live demo, Simple css example with html controls, Using css in html webpage with example, Simple html webpage with css styles example
Example
<!DOCTYPE html> <html> <head> <style> h1{ text-align:center; color:skyblue; } p { text-align: center; color: red; } </style> </head> <body> <h1>Welcome to Tutlane.com</h1> <p>All Paragraph tags will be effect with style.</p> </body> </html>
Click Here to See Result
Result