<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>Machado Odontologia Avançada</title>


<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>


<style>


body{

margin:0;

background:black;

font-family:Arial;

color:#d4af37;

text-align:center;

}


header{

padding:20px;

font-size:22px;

}


model-viewer{

width:100%;

height:90vh;

}


</style>


</head>


<body>


<header>

Machado Odontologia Avançada

</header>


<model-viewer

id="viewer"

camera-controls

auto-rotate

shadow-intensity="1"

environment-image="neutral">

</model-viewer>


<script>


const urlParams = new URLSearchParams(window.location.search);

const file = urlParams.get("file");


document.getElementById("viewer").src = file;


</script>


</body>

</html>