-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.html
More file actions
39 lines (30 loc) · 1001 Bytes
/
media.html
File metadata and controls
39 lines (30 loc) · 1001 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
38
39
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Ejercicio en materialize</title>
<meta name="viewport" content="width-device-width, initial-scale=1">
<link rel="stylesheet" href="css/materialize.min.css">
</head>
<body>
<h1>Media</h1>
<div class="container">
<h3>Imagenes Responsivas</h3>
<img class="responsive-img"src="http://lorempixel.com/g/600/600/" alt="Imagen de lorem pixel">
<hr>
<h3>Imagenes responsive circulares</h3>
<img class="circle responsive-img" src="http://lorempixel.com/g/600/600/">
<hr>
<h3>Video Responsive</h3>
<div class="row">
<div class="col l10">
<div class="video-container">
<iframe width="420" height="315" src="https://www.youtube.com/embed/5gNmKzM7F8Y" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</body>
<script>js/materialize.min.js</script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
</html>