-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (96 loc) · 4.29 KB
/
Copy pathindex.html
File metadata and controls
116 lines (96 loc) · 4.29 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
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
<!DOCTYPE html>
<html lang="en">
<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="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bungee+Shade&family=Ranchers&display=swap" rel="stylesheet">
<title>Memory Game</title>
</head>
<body>
<!-- HEADER -->
<header>
<h1>MEMORY GAME</h1>
</header>
<!-- MAIN -->
<main>
<!-- FIRST row containing cards -->
<div class="row">
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_air_balloon_3134741.svg" alt="baloon image">
<h3 class="hidden-text">Air Baloon</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Bicycle_3134821.svg" alt="bicycle image">
<h3 class="hidden-text">Bicycle</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Bicycle_3134821.svg" alt="bicycle image">
<h3 class="hidden-text">Bicycle</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Cruise_Ship_3134824.svg" alt="cruise image">
<h3 class="hidden-text">Cruise</h3>
</div>
</div>
<!-- SECOND row containing cards -->
<div class="row">
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Cruise_Ship_3134824.svg" alt="cruise image">
<h3 class="hidden-text">Cruise</h3>
</div>
<!-- CARTA SEMPRE VISIBILE -->
<div class="card-always-visible">
<!-- always shown -->
<img class="not-hidden-img" src="./img/noun_air_balloon_3134741.svg" alt="baloon image">
<h3 class="not-hidden-text">Air Baloon</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Tractor_3134797.svg" alt="Tractor image">
<h3 class="hidden-text">Tractor</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Submarine_3134738.svg" alt="submarine image">
<h3 class="hidden-text">Submarine</h3>
</div>
</div>
<!-- THIRD row containing cards -->
<div class="row">
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Tractor_3134797.svg" alt="Tractor image">
<h3 class="hidden-text">Tractor</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Tram_3134750.svg" alt="tram image">
<h3 class="hidden-text">Tram</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Submarine_3134738.svg" alt="submarine image">
<h3 class="hidden-text">Submarine</h3>
</div>
<div class="card">
<!-- hidden image -->
<img class="hidden-img" src="./img/noun_Tram_3134750.svg" alt="tram image">
<h3 class="hidden-text">Tram</h3>
</div>
</div>
</main>
<!-- FOOTER -->
<footer>
<h4>From Team Boolean</h4>
</footer>
</body>
</html>
<!-- VALIDATED -->