-
Notifications
You must be signed in to change notification settings - Fork 0
/
video.html
138 lines (119 loc) · 4.07 KB
/
video.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/reset.css"/>
<link rel="stylesheet" href="./css/navbar.css"/>
<link rel="stylesheet" href="./css/video.css"/>
<title> - VIDEO - </title>
</head>
<body>
<!-- Me decidí por la palabra MENU, antes que repetir el truco de la burger, y no me gusta como icono -->
<nav class="navbar" id="miNav">
<div class="logo">MENU</div>
<input type="checkbox" id="menu">
<label for="menu" class="menu-label"></label>
<div class="button-p">
<input type="text" id="search-box">
<button class="search-but">search</button>
</div>
<ul class="navbar-list">
<li class="navbar-item"><a href="gallery.html#ataque">ATTACK</a></li>
<li class="navbar-item"><a href="gallery.html#defensa">DEFENSE</a></li>
<li class="navbar-item"><a href="gallery.html#favs">FAVORITES</a></li>
<li class="navbar-item"><a href="https://www.google.es">logout</a></li>
</ul>
</nav>
<header class="miHeader" id="miHeader">
<h1>Basketball Concepts & Playbook</h1>
</header>
<main>
<h1>FREE THROWS</h1>
<h2>Publication year: 2019</h2>
<section class="video-section">
<div class="video-div">
<video src="img/Detalles_TL__corto.MOV" controls >
<p>Tu navegador no soporta HTML5 video.</p>
</video>
</div>
</section>
<section class="details-sec">
<article class="details-div">
<p class="encabezado">MAIN DETAILS to watch: </p>
<ul>
<li>Feet position.</li>
<li>Knees flexion.</li>
<li>Wrist flexion.</li>
</ul>
</article>
</section>
<section class="statistics-sec">
<article class="statistics-art">
<p class="encabezado-stats">VIDEO STATISTICS: </p>
<table>
<thead>
<tr>
<th></th>
<th>LAST MONTH</th>
<th>LAST YEAR</th>
<th>TOTAL</th>
</tr>
</thead>
<tbody>
<tr>
<th>Visited:</th>
<td>12</td>
<td>35</td>
<td>43</td>
</tr>
<tr>
<th>Users marked Fav:</th>
<td>1</td>
<td>5</td>
<td>8</td>
</tr>
</tbody>
</table>
</article>
</section>
<section class="others-sec">
<h2 class="others-h2">Preparing NEW videos... </h2>
<div class="others-grid">
<article class="others-card">
<a class="others-card-a" href="" target="self">
<div class="others-card-img"><img src="img/coming-soon.jpg" alt="Oops! troubles?"></div>
</a>
<div class="others-card-texto">
<p class="p-de-card">This text describes the video</p>
</div>
</article>
<article class="others-card">
<a class="others-card-a" href="" target="self">
<div class="others-card-img"><img src="img/coming-soon.jpg" alt="Oops! troubles?"></div>
</a>
<div class="others-card-texto">
<p class="p-de-card">This text describes the video</p>
</div>
</article>
<article class="others-card">
<a class="others-card-a" href="" target="self">
<div class="others-card-img"><img src="img/coming-soon.jpg" alt="Oops! troubles?"></div>
</a>
<div class="others-card-texto">
<p class="p-de-card">This text describes the video</p>
</div>
</article>
<article class="others-card">
<a class="others-card-a" href="" target="self">
<div class="others-card-img"><img src="img/coming-soon.jpg" alt="Oops! troubles?"></div>
</a>
<div class="others-card-texto">
<p class="p-de-card">This text describes the video</p>
</div>
</article>
</div>
</section>
</main>
</body>
</html>