HTML5 is the latest version for coding the web page of our present dispensation as previous versions has been in existence but problematic and time consuming compare to the present version which has much more features use for coding hence coders now find it stress-free when coding.
To begins HTML5 coding, it is necessary to start with <!DOCTYPE html> to let the web browsers understand that the HTML is version 5.
To build or design a web sites, HTML and CSS with JavaScript is one of the primary coding technologies to use. HTML is use for sketching the web page that is page layout of the website because it does not really makes it attractive but it is the foundation of designing web page. Don’t forget so soon that HTML stands for HyperText Mark-Up Language.
CSS (Cascading Style Sheet) as the name implies is responsible for decorating the layout of the HTML. When the layout is set up, CSS is use to design accurately style of how the HTML should appear or arrange using its different properties like float, margin, padding, decoration, display, background-color, background-image and mention but few.
JavaScript, the responsiveness of any web sites and user friendliness with user interaction is one of the unique things of a website hence using JavaScript is very essential. Using JavaScript helps your website to attract inputs and output automatically or on click contingent on the coder.
Of course, when designing a web page, after declaring the version of HTML you are using, it starts with <html> and end with </html>. Every other elements or tags fall inside the tag <html>…</html>.
After declaring the code use for the web page (<html>) is the title of the page which is the tag <title> and end with </title>. Anything found inside this tag will appear on the Tap Bar of the web browsers. This should be relative enough to interpret the relationship between the title and the contents.
The logo and menu of the website sit in between the <head>…</head> tags. The <head> tag follow the title tags. Feature image for the home page can be inserted too.
The <body> is the main part for content to sit in, this may contain images, paragraphs, videos, audios, map, InfoGraphics etc. Note that any part of this layout can be divided into <div class=…> and <div id=…>
Footer is the end of the page layout where Terms & Conditions, Privacy and All Right Reserved sit in.
Remember to close the source code with </html>
I hope this article was resourceful?