File size: 468 Bytes
f70204a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Thee Eclipse</title>
</head>
<body>
    <h1>Thee Eclipse said hello</h1>
    <button onclick="redirectToEclipse()">Go to eclipse.com</button>

    <script>

        function redirectToEclipse() {

            window.location.href = "https://www.eclipse.com";

        }

    </script>
</body>
</html>