HuggingDiscussions / index.html
eclipsethee's picture
test
f70204a verified
raw
history blame
468 Bytes
<!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>