-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Pokemon Cards</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h1>Cards</h1>
<div id="main">
<div id="card1" class="card">
<img
src="https://images.unsplash.com/photo-1542779283-429940ce8336?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Nnx8cG9rZW1vbnxlbnwwfHwwfHx8MA%3D%3D"
alt=""
/>
</div>
<div id="card2" class="card">
<img
src="https://images.unsplash.com/photo-1612454376902-577cd469d008?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTB8fHBva2Vtb258ZW58MHx8MHx8fDA%3D"
alt=""
/>
</div>
<div id="card3" class="card">
<img
src="https://images.unsplash.com/photo-1637158881671-f6e4331887e5?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTF8fHBva2Vtb258ZW58MHx8MHx8fDA%3D"
alt=""
/>
</div>
<div id="card4" class="card">
<img
src="https://images.unsplash.com/photo-1643725173053-ed68676f1878?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTV8fHBva2Vtb258ZW58MHx8MHx8fDA%3D"
alt=""
/>
</div>
</div>
</body>
</html>