15 lines
227 B
HTML
15 lines
227 B
HTML
|
|
<!DOCTYPE HTML>
|
|
<html>
|
|
<body>
|
|
<script>
|
|
function myFunction()
|
|
{
|
|
window.location.href = './content/index.html';
|
|
}
|
|
myFunction();
|
|
window.open('file.extension');
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|