-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (35 loc) · 840 Bytes
/
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
40
41
<html>
<head>
<title>invie</title>
<style media="screen">
body
{
margin: 0;
border: 11px solid #192b36;
}
img
{
max-width: 100%;
vertical-align: top;
}
.responsive
{
display: none;
}
@media screen and (max-width: 998px){
img
{
display: none;
}
.responsive
{
display: block;
}
}
</style>
</head>
<body>
<img src="invie-responsive.png" alt="" class="responsive">
<img src="nueva-version.jpg" alt="">
</body>
</html>