CodeLab
Tutorials For Everyone
Run
<!Doctype HTML> <html> <head> <title>Internal Style Sheets</title> <style> .pie-content{ font-size: 20px; color: #999; font-family: 'Roboto', sans serif; font-weight: 500; background: #f4f4fb; margin: 20px; } </style> </head> <body> <h2>CSS Internal Style Sheets</h2> As you see we have defined our styles in the head section using CSS class selector. After that we can use that class on the same page for unlimited times. <h3>History of CSS</h3> <p class="pie-content">CSS was developed at W3C. W3C timely release the recommendations for HTML and CSS. At present there are 4 levels or reommndations of CSS. Most Latest release is CSS4.</p> </body> </html>