0
generalized HTML5 page structure.
1 Answer
0
This is a basic html5 skeleton
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>title here </title>
</head>
<body>
<header>
<h1>Title </h1>
<nav>
</nav>
</header>
<article>
</article>
<footer>
</footer>
</body>
</html>