-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.HTML
More file actions
89 lines (71 loc) · 2.34 KB
/
Copy pathindex.HTML
File metadata and controls
89 lines (71 loc) · 2.34 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
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
<!DOCTYPE html>
<html lang="es">
<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="stylesheet" href="grid.css" />
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Satisfy&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300&family=Shadows+Into+Light&display=swap" rel="stylesheet">
<title>Juego de animales</title>
</head>
<body>
<header>
<h1>Enciclopedia de animales raros</h1>
</header>
<main class="container">
<div class="foto" id="foto">
<img src="imagen0.jpg" alt="foto" id="imagen" />
<div class="texto">
<h2 id="descripcion"> Selecciona el nombre de un animal para saber mas sobre el</h2>
<p id="caracteristicas"></p>
</div>
</div>
<div class="nombre animal1">
<p>PEZ MANO</p>
</div>
<div class="nombre animal2">
<p>GACELA JIRAFA</p>
</div>
<div class="nombre animal3">
<p>PICOZAPATO</p>
</div>
<div class="nombre animal4">
<p>PERRO CORDERO</p>
</div>
<div class="nombre animal5">
<p>PICOFINO</p>
</div>
<div class="nombre animal6">
<p>NARIZ DE ESTRELLA</p>
</div>
<div class="nombre animal7">
<p>VIBORA EMPLUMADA</p>
</div>
<div class="nombre animal8">
<p>PICO SIERRA</p>
</div>
<div class="nombre animal9">
<p>PEZ GOTA</p>
</div>
<div class="nombre animal10">
<p>RANA CERDO</p>
</div>
<div class="nombre animal11">
<p>MONO SIN NARIZ</p>
</div>
<div class="nombre animal12">
<p>PEZ BRUJA</p>
</div>
</main>
<footer>
<p>© Juego de animales raros creado por Jorge Oyola Moreno 2022</p>
</footer>
<script type="text/javascript" src="script.js"></script>
</body>
</html>