-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (32 loc) · 857 Bytes
/
index.html
File metadata and controls
32 lines (32 loc) · 857 Bytes
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
<!doctype html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Invie</title>
<style media="screen">
body {
margin: 0;
border: 10px solid #192b36;
}
img {
max-width: 100%;
vertical-align: top;
}
img#responsive {
display: none;
}
@media screen and (max-width: 768px) {
img#responsive {
display: block;
}
}
</style>
</head>
<body>
<img src="invie-responsive.png" alt="Invie Responsive" id="responsive">
<img src="nueva-version.jpg" alt="Nuevo Invie">
</body>
</html>