Home

Published

- 1 min read

html boilerplate

img of html boilerplate

The solution for this is noted below

html boilerplate

Solution

   <!doctype html>
<html lang="en">
	<head>
		<meta charset="UTF-8" />
		<meta name="viewport" content="width=device-width, initial-scale=1.0" />
		<link rel="stylesheet" href="Index.css" />
		<title>Title</title>
	</head>
	<body>
		<script src="Index.js"></script>
	</body>
</html>

Try other methods by searching on the site. That is if this doesn’t work