Simple HTML document with header 1 - HTML CSS HTML

HTML CSS examples for HTML:H1-H6 Headings

Description

Simple HTML document with header 1

Demo Code

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>

Related Tutorials