# Define the HTML content as a string
html_content = '''
<!DOCTYPE html>
<html>
<head>
<title>Game Embed</title>
</head>
<body style="margin: 0; padding: 0;">
<iframe src="[Link] style="width: 100%;
height: 100%; border: none;"></iframe>
</body>
</html>
'''
# Print the HTML content to the output (for copying or using in another
environment)
print("Copy this HTML and use it to create an HTML file in another environment:")
print(html_content)