Answers for "how to make multiple pages html"

0

how to make multiple pages html

<a href="page2.html">page2.html</a>
Posted by: Guest on March-16-2021
1

how to create multiple pages in html

<!-- Answer to: "how to create multiple pages in html" -->

<!DOCTYPE html>
<html>
<head>
	<link href="./style.css">
    <script type="text/javascript" src="./script.js"></script>
	<title></title>
</head>
<body>
	<a href="./new_page.html">Link to other pages</a> 
	...
</body>
</html>
Posted by: Guest on March-07-2020

Code answers related to "how to make multiple pages html"

Browse Popular Code Answers by Language