outline.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"
>
<head>
<title>Add a title here</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
</head>
<body>
<p>Add some content here.</p>
</body>
</html>
layout.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<link href="../../all/image/logo.ico" rel="shortcut icon"/>
<title>PortFolio</title>
<meta name="keywords" content="Reference List" />
<meta name="description" content="FEST026 Web Design" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="../../all/css/layout.css" type="text/css" />
<link rel="stylesheet" href="../css/style.css" type="text/css" />
</head>
<body>
<div class="header">
<div class="topnav" id = "myTopNav">
<a class = "logo" href = "./index.html" onclick="window.open(this.href, '_blank');return false;"></a>
<a href = "./index.html" onclick="window.open(this.href, '_blank');return false;">Home</a>
<a href = "" onclick="window.open(this.href, '_blank');return false;">Chapter</a>
<a href = "" >About</a>
<a href = "javascript:void(0);" class = "icon">☰</a>
</div><!-- .Navigation-->
</div><!-- .header-->
<div class="wrapper">
<div class="content">
</div><!-- .content-->
</div><!-- .wrapper -->
<div class="footer">
<p>© by Lim Yao Cheng</p>
</div><!-- .footer -->
<!-- Script -->
<script type = "text/javascript" src="../../all/js/menu.js"></script>
</body>
</html>
tag open in new tab
<!-- HTML -->
<a
href="http://www.cybermilitia.net"
title="Cyber Militia"
target="_blank">
The most awesome site !
</a>
<!-- XHTML1.0 Strict -->
<a
href="http://www.cybermilitia.net"
title="Cyber Militia"
onclick="window.open(this.href, '_blank');return false;">
The most awesome site !
</a>