Now and then I start a project from scratch and want to code it myself. I used to struggle to know where to start with writing the code and would always miss important and basic elements out or write them incorrectly. One day I thought to myself "if only there were a basic HTML template that would let me start a project from scratch with all the elements I need to be able to hit the ground running" - that's when I decided to start a project to start projects with and here we are with the finished project!
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Free HTML Template</title> <meta name="title" content="Basic HTML5 template"> <meta name="description" content="A free, basic HTML5 template for websites"> <link rel="stylesheet" href="css/style.css"> </head> <body> <script src="js/script.js"></script> </body> </html>