cointube / index.html
dimensionalpulsar's picture
Update index.html
cad019a verified
raw
history blame contribute delete
719 Bytes
<!DOCTYPE html>
<html lang="es" class="h-full">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CoinTube</title>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-gray-900 text-white h-full">
<div id="root" class="h-full w-full"></div>
<script type="module" src="/main.jsx"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/@emailjs/browser@4/dist/email.min.js"></script>
<script type="text/javascript">
window.onload = function() {
if (window.emailjs) {
emailjs.init("XK6EoFoAqInBoDjIe");
}
};
</script>
</body>
</html>