basic html differences
I was trying to create basic html pages for my web site and I noticed the speed factor. For example if you write just ”coming soon” without any html tags etc, you can see the page correctly from your browser but it takes 131 ms to render, but if you use basic html tags like
<!doctype html>
<head>coming soon</head>
</html>
it takes only 14 ms. Use always default way for creating such things, so you will use the max speed of browser.