You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
644 B
HTML
35 lines
644 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title></title>
|
|
<style>
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1></h1>
|
|
|
|
<main>
|
|
</main>
|
|
|
|
<footer id="vLinks">
|
|
</footer>
|
|
|
|
<script>
|
|
var loc = window.location.href;
|
|
|
|
var linkStr = '<a href="http://validator.w3.org/check?uri=';
|
|
linkStr += loc;
|
|
linkStr += '">\n<strong> HTML </strong> Valid! </a> |';
|
|
linkStr +=' <a href="http://jigsaw.w3.org/css-validator/validator?uri='
|
|
linkStr += loc;
|
|
linkStr += '?profile=css3">\n<strong> CSS </strong> Valid! </a>'
|
|
console.log(linkStr);
|
|
|
|
var footer = document.getElementById("vLinks");
|
|
console.log(footer);
|
|
footer.innerHTML = linkStr;
|
|
</script>
|
|
</body>
|
|
</html>
|