HTML CSS examples for HTML:H1-H6 Headings
Simple HTML document with header 1
ResultView the demo in separate window
<!DOCTYPE html> <html lang="en"> <head> <title>Simple HTML document</title> </head> <!--from w w w.jav a2s .co m--> <body> <h1>Hello World!</h1> </body> </html>