18 lines
568 B
HTML
18 lines
568 B
HTML
<!doctype html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Visualizador de Fotos</title>
|
|
<link rel="stylesheet" href="./styles.css" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
|
|
<!-- Global CDN builds to work from file:// without CORS issues -->
|
|
<script src="https://unpkg.com/vue@3/dist/vue.global.prod.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/exifr/dist/full.umd.js"></script>
|
|
<script src="./main.js"></script>
|
|
</body>
|
|
</html>
|