-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
39 lines (34 loc) · 1.04 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="es-AR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>./index.html</title>
<link rel="icon" href="./public/images/brand/brand-icon.svg" type="image/svg+xml">
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-FWWE3L9BK4"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-FWWE3L9BK4');
</script>
<!-- Redireccion a public/index.html -->
<meta http-equiv="refresh" content="2; url=./public">
<style>
body {
background-color: #3373E6;
height: 100dvh;
display: flex;
place-content: center;
overflow: hidden;
}
img {
width: 8rem;
}
</style>
</head>
<body>
<img src="./public/images/brand/brand-icon.svg" alt="logo onlineshop">
</body>
</html>