<html>
<body>
<p>Click the button to create a NAV element containing a link.</p>
<button onclick="myFunction()">Try it</button>
<p id="myP"></p>
<script>
function myFunction() {
var x = document.createElement("NAV");
document.body.appendChild(x);
var anchorElmnt = document.createElement("A");
anchorElmnt .setAttribute("href", "/html");
var txt1 = document.createTextNode("HTML");
anchorElmnt .appendChild(txt1);
x.appendChild(anchorElmnt);
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_nav_create by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:07:49 GMT -->
</html>