HTML CSS examples for CSS:Quiz
Center align the <h1> element.
<!DOCTYPE html> <html> <head> <style> h1 {<!-- w w w . java 2s. c om--> text-align: center; } </style> </head> <body> <h1>This is a Heading</h1> <p>This is a paragraph.</p> <p>This is another paragraph.</p> </body> </html>