-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.95 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.95 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./assets/videoTube.ico">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link rel="stylesheet" href="./CSS/styles.css">
<link rel="stylesheet" href="./CSS/normalice.css">
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<title>Youtube</title>
</head>
<body>
<header class="header">
<nav class="header__nav">
<figure class="header__figure">
<a href="./index.html">
<img src="./assets/videoTube.png" alt="Logo Youtube">
</a>
</figure>
<form action="" class="search-bar">
<input type="text" placeholder="Buscar" name="buscador">
<div class="actions">
<button type="sumit"><span class="material-icons">search</span></button>
<button><span class="material-icons">mic</span></button>
</div>
</form>
<ul class="header__list">
<li>
<a href="./template/videoForm.html"><img src="./assets/add.svg" alt=""></a>
</li>
<li>
<a href="">test</a>
</li>
</ul>
</nav>
</header>
<main class="main">
<div class="main__buttons">
<button name="all">Todos</button>
<button name="games">Videojuegos</button>
<button name="developer">Programación</button>
<button name="movies">Películas</button>
</div>
<section class="main_cards"> </section>
</main>
<script src="./JS/script.js" type="module"></script>
</body>
</html>