-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 723 Bytes
/
index.html
File metadata and controls
32 lines (27 loc) · 723 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
<html>
<head>
<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="" id="responsive">
<img src="nueva-version.jpg" alt="">
</body>
</html>