1<!-- Answer to: "how to create multiple pages in html" -->
2
3<!DOCTYPE html>
4<html>
5<head>
6 <link href="./style.css">
7 <script type="text/javascript" src="./script.js"></script>
8 <title></title>
9</head>
10<body>
11 <a href="./new_page.html">Link to other pages</a>
12 ...
13</body>
14</html>