-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.03 KB
/
Copy pathindex.html
File metadata and controls
24 lines (24 loc) · 1.03 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
<!DOCTYPE html>
<html lang="it">
<head>
<meta charset="UTF-8">
<title>Photo Gallery</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="basic-grid">
<div class="card" style="background-color: blue;">1</div>
<div class="card" style="background-color: red;">2</div>
<div class="card" style="background-color: lime;">3</div>
<div class="card card-tall" style="background-color: maroon;">4</div>
<div class="card" style="background-color: grey;">5</div>
<div class="card" style="background-color: fuchsia;">6</div>
<div class="card card-tall" style="background-color: black;">7</div>
<div class="card card-tall" style="background-color: aqua;">8</div>
<div class="card card-tall card-wide " style="background-color: purple;">9</div>
<div class="card" style="background-color: navy;">10</div>
<div class="card card-wide " style="background-color: pink;">11</div>
<div class="card card-tall card-wide " style="background-color: yellow; color:black">12</div>
</section>
</body>
</html>