This is a basic HTML5 template code for fast creation of webpages in a texteditor.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<!DOCTYPE HTML> <html lang="en"> <head> <meta charset="utf-8"> <title>HTML5 TEMPLATE</title> <meta name="description" content="Page Description"> <meta name="author" content="Author of the site"> <link rel="stylesheet" href="/css/styles.css?v=1.0"> <script src="/js/scripts.js"></script> </head> <body> <p>Hello HTML5</p> </body> </html> |