<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Nail Polish Customization with AR</title>
<style>
body {
margin: 0;
overflow: hidden;
}
canvas {
width: 100vw;
height: 100vh;
display: block;
}
</style>
</head>
<body>
<script src="https://aframe.io/releases/1.2.0/aframe.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/ar.js"></script>
<a-scene embedded arjs="sourceType: webcam;">
<a-marker preset="hiro">
<a-entity
gltf-model="url(path/to/nailpolish_bottle.glb)"
scale="0.1 0.1 0.1"
position="0 0 0"
></a-entity>
</a-marker>
<a-entity camera></a-entity>
</a-scene>
</body>
</html>