-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (56 loc) · 2.38 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Podcast App</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/font-awesome.css">
</head>
<body>
<!-- section container app-->
<section class="container-podcastapp">
<!-- header podcast title -->
<header id="header">
<h1 class="podcast-title"></h1>
</header>
<!-- end header app title -->
<!-- podcast description -->
<div class="container-title-podcast">
<h3 class="podcast-description"></h3>
</div>
<!-- end podcast description -->
<!-- list podcasts -->
<nav id="nav">
<i class="icon-chevron-up up-icon"></i>
<div class="container-list-podcast">
<ul class="nav_holder">
</ul>
</div>
<i class="icon-chevron-down down-icon"></i>
</nav>
<!-- end list podcasts -->
<!-- container videos podcast by list -->
<section class="video-podcast">
<video class="video" width="650" height="350" preload="auto" src="" type="video/mp4" autoplay></video>
</section>
<!-- end container videos podcast by list -->
<!-- container description podcast -->
<section class="description-podcast">
<p></p>
</section>
<!-- end container description podcast -->
</section>
<!-- end section container app -->
<!-- scripts -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="js/jquery.keynav.min.js"></script>
<script src="js/custom.js"></script>
</body>
</html>