Forum Discussion
Launch page with multiple buttons
You can definitely create a launch page with multiple buttons by using a single JavaScript function to open different links in new windows. Here's a simplified example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Launch Page</title>
<script>
function launchContent(courseUrl) {
window.open(courseUrl, '_blank', 'toolbar=0,location=0,menubar=0');
}
</script>
</head>
<body>
<button onclick="launchContent('course1.html')">Launch Course 1</button>
<button onclick="launchContent('course2.html')">Launch Course 2</button>
<button onclick="launchContent('course3.html')">Launch Course 3</button>
</body>
</html>
This script simplifies the process by using a common function to open each link in a new window