-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card memory | Home</title>
<link rel="shortcut icon" href="img/logo.png" type="image/x-icon">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="css/styles.css">
<link href="http://allfont.es/allfont.css?fonts=comic-sans-ms" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="vendor/fontawesome-free-5.11.2-web/css/all.css">
</head>
<body>
<!-- contenedor principal -->
<div class="cont-home">
<div class="container-fluid d-flex flex-column justify-content-center align-items-center home">
<div class="">
<!-- imagen del marvel-->
<img class="logo-marvel" src="img/MarvelStudiosLogo.png" alt="logo marvel" width="15%" style="margin-left: 15%;" >
</div>
<!-- imagen del logo -->
<img class="logo-card-memory" src="img/logo.png" alt="CardMemoryLogo" width="40%" >
<!-- boton play -->
<div class="my-5 text-center">
<a href="dashboard.html"><img class="btn-play" src="img/btn-play.svg" alt="play" width="100%"></a>
<p class="display-4" style="font-family: 'Comic Sans MS', arial; color: rgb(118,93,65);" >Play</p>
</div>
</div>
</div>
</body>
</html>