Basic HTML5 Example
<!DOCTYPE html> <html> <head> <title>Welcome To Your First HTML Page</title> <script type="text/javascript"> function exampleFunction(){ //do nothing } </script> <style type="text/css"> </style> <link rel="stylesheet" href="/link/to/css.css"> </head> <body> <header> Site Header </header> <article> Your page's main content goes here </article> <aside> Useful for sidebars, or other less-important content </aside> <footer> Indicates a footer, of a page or a section </footer> </body> </html>