-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 843 Bytes
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 843 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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>pagina curso </title>
<style media="screen">
body{
margin: 0;
}
img{
max-width: 100%;
vertical-align: top;
/* display: none; */
}
img#responsive{
display: none;
}
@media screen and (max-width:768px){
img#responsive{
display: block;
}
img{
display: none;
}
}
</style>
</head>
<body>
<p>para probar</p>
<img src="img/respon.png" alt="" id="responsive">
<img src="img/header.jpg" alt="header">
<img src="img/hero.jpg" alt="hero">
<img src="img/acustica.jpg" alt="acustica">
<img src="img/clasica.jpg" alt="clasica">
<img src="img/nueva-ver.jpg" alt="nueva">
</body>
</html>