-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmedia.html
74 lines (65 loc) · 2.49 KB
/
media.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>mobiStyle</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:100,300,300italic,500|Electrolize' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/grid.css" />
<link rel="stylesheet" href="css/mobi.css" />
</head>
<body>
<img id="mg-imgBG" src="img/Avenger-blur.png" />
<div id="mg-scanlineBG"></div>
<img id="mg-gridBG" src="img/new-dot.png" alt="" />
<div id="mg-dotBG"></div>
<section id="mg-wrapper">
<div class="mainContent">
<div class="mg-panel">
<h1>Media</h1>
<h2>Images</h2>
<p>By default, images will appear normally:<br />
<img src="http://lorempixel.com/480/320/" alt="Placeholder image" />
</p>
<p>But if you would like to apply a little more mobiGlas style to it, add class <code>.mg-image</code>.<br />
<img src="http://lorempixel.com/480/320/" alt="Placeholder image" class="mg-image"/>
</p>
<hr />
<h2>The Audio Element:</h2>
<audio controls>
<source src="http://www.w3schools.com/tags/horse.ogg" type="audio/ogg" />
<source src="http://www.w3schools.com/tags/horse.mp3" type="audio/mpeg" />
Your browser does not support the audio element.
</audio>
<hr />
<h2>The Video Element:</h2>
<video width="320" height="240" controls>
<source src="http://www.w3schools.com/tags/movie.mp4" type="video/mp4" />
<source src="http://www.w3schools.com/tags/movie.ogg" type="video/ogg" />
Your browser does not support the video tag.
</video>
<hr />
<h2>Embedded content:</h2>
<p>YouTube video (iframe):</p>
<iframe width="560" height="315" src="http://www.youtube.com/embed/l4f9QF0SGuQ" frameborder="0" allowfullscreen></iframe>
</div>
</div>
<div class="mg-sidebar">
<div class="mg-panel">
<h3>Nav</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="text.html">Text & Typography</a></li>
<li><a href="links.html">Links & Navigation</a></li>
<li class="active"><b>Media</b></li>
<li><a href="lists.html">Lists & Tables</a></li>
<li><a href="forms.html">Forms & Input</a></li>
<li><a href="messages.html">Messages & Notifications</a></li>
</ul>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/snap.svg/0.3.0/snap.svg-min.js"></script>
<script src="scripts/mG.js"></script>
</body>
</html>