-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
index.html
32 lines (32 loc) · 855 Bytes
/
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Rick and Morty memory game</title>
<link rel="icon" href="./img//portal.png" />
<link
href="https://fonts.googleapis.com/css?family=Bangers&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<header>
<div class="video-container">
<video autoplay muted loop>
<source src="video/video.mp4" type="video/mp4" />
</video>
<div class="contenido">
<img src="img/logo.png" alt="Logo" />
<a class="noSelect" href="./pages/game.html">
<div class="button two noSelect">
Jugar
</div>
</a>
</div>
</div>
</header>
</body>
</html>