5ffa8a150b
Archivos iniciales
19 lines
666 B
HTML
19 lines
666 B
HTML
<!doctype html>
|
|
<html lang="es-ES">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Juego Gallina</title>
|
|
<link href="/favicon.ico" type="image/x-icon" rel="icon" />
|
|
<link rel="stylesheet" href="/css/modern-normalize.css" />
|
|
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css" />
|
|
<link rel="stylesheet" href="style.css" />
|
|
</head>
|
|
<body>
|
|
<div id="gallina" onclick="ganar()">
|
|
<img src="images/pollo.png" alt="robot_chicken" />
|
|
</div>
|
|
</body>
|
|
<script src="gallina.js" type="text/javascript" defer></script>
|
|
</html>
|