29 lines
456 B
PHP
29 lines
456 B
PHP
<html>
|
|
|
|
<head>
|
|
<meta name="viewport" content='width=device-width, initial-scale=1.0,text/html,charset=utf-8'>
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
/* Reset default margin */
|
|
}
|
|
|
|
iframe {
|
|
display: block;
|
|
background: #000;
|
|
border: none;
|
|
height: 100vh;
|
|
width: 100vw;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<?php
|
|
|
|
$url = "https:\/\/forzafootball.com\/#sportId=1";
|
|
?>
|
|
|
|
<iframe id="iframe" src="<?=$url?>" frameborder="0" scrolling="auto"></iframe>
|
|
</body>
|
|
</html>
|