-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
124 lines (116 loc) · 4.23 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
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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>f5 Card Game</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<section class="card-game">
<div class="memory-card" data-framework="cat">
<img
class="front-face"
src="https://i.blogs.es/5e9f97/captura-de-pantalla-2020-04-05-a-las-18.39.45/450_1000.png"
alt="Cat"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="cat">
<img
class="front-face"
src="https://i.blogs.es/5e9f97/captura-de-pantalla-2020-04-05-a-las-18.39.45/450_1000.png"
alt="Cat"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="dog">
<img
class="front-face"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQxCjehutLPI1GkjADwCFFqeOlD_EsjixuZQ&usqp=CAU"
alt="dog"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="dog">
<img
class="front-face"
src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSQxCjehutLPI1GkjADwCFFqeOlD_EsjixuZQ&usqp=CAU"
alt="dog"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="bear">
<img
class="front-face"
src="https://c.files.bbci.co.uk/11917/production/_100495917_cubtwo.jpg"
alt="bear"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="bear">
<img
class="front-face"
src="https://c.files.bbci.co.uk/11917/production/_100495917_cubtwo.jpg"
alt="bear"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="cow">
<img
class="front-face"
src="https://i.pinimg.com/736x/1b/86/a8/1b86a88fa342d3eb15714ac294a05e72.jpg"
alt="cow"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="cow">
<img
class="front-face"
src="https://i.pinimg.com/736x/1b/86/a8/1b86a88fa342d3eb15714ac294a05e72.jpg"
alt="cow"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="bird">
<img
class="front-face"
src="https://thumbs.dreamstime.com/b/closeup-baby-birds-wide-open-mouth-nest-young-orange-beak-nestling-wildlife-146053901.jpg"
alt="bird"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="bird">
<img
class="front-face"
src="https://thumbs.dreamstime.com/b/closeup-baby-birds-wide-open-mouth-nest-young-orange-beak-nestling-wildlife-146053901.jpg"
alt="bird"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="chuki">
<img
class="front-face"
src="https://www.vanguardia.com/binrepository/716x477/0c0/0d0/none/12204/KEEC/web_chucky-chuck_big_ce_VL231224_MG21146617.jpg"
alt="chuki"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
<div class="memory-card" data-framework="chuki">
<img
class="front-face"
src="https://www.vanguardia.com/binrepository/716x477/0c0/0d0/none/12204/KEEC/web_chucky-chuck_big_ce_VL231224_MG21146617.jpg"
alt="chuki"
/>
<img class="back-face" src="assets/logo.png" alt="Logo f5" />
</div>
</section>
<section class="button">
<div class="x">
<button type="button" onClick="window.location.href=window.location.href">
Restart
</button>
</div>
</section>
<script src="scripts.js"></script>
</body>
</html>