-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (57 loc) · 2.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Card Gallery</title>
</head>
<body>
<div class="main">
<h1 class="heading">Cards Design with CSS Flexbox</h1>
<h5 class="by">Designe by - Rz</h5>
<div class="card-area">
<div class="card">
<img class="img" src="./image/img-1.jpg" alt="">
<h3>Desert</h3>
<p>The Atacama Desert is so dry that there are some weather stations in the desert that have never recorded any measurable rainfall.</p>
</div>
<div class="card">
<img class="img" src="./image/img-2.png" alt="">
<h3>Strange</h3>
<p> The Sanctum Sanctorum of Doctor Strange is often depicted with a distinctive, ornate window called the "Window of the Worlds.</p>
</div>
<div class="card">
<img class="img" src="./image/img-3.png" alt="">
<h3>Infinity</h3>
<p>In mathematics, infinity (∞) represents an abstract concept of an unbounded quantity that goes on forever.</p>
</div>
<div class="card">
<img class="img" src="./image/img-4.png" alt="">
<h3>City</h3>
<p>Tokyo offers a unique nightlife experience with a blend of traditional and modern entertainment.</p>
</div>
<div class="card">
<img class="img" src="./image/img-5.png" alt="">
<h3>Vector</h3>
<p>Vector graphics particularly useful for logos, icons, and illustrations that need to be versatile and maintain their quality in various applications,</p>
</div>
<div class="card">
<img class="img" src="./image/img-6.png" alt="">
<h3>Itachi</h3>
<p>The diversity of anime genres and themes ensures that there's something for everyone to enjoy, and it's a medium that can cater to a wide range of tastes and interests.</p>
</div>
<div class="card">
<img class="img" src="./image/img-7.png" alt="">
<h3>Town</h3>
<p>Chinatowns are known for their vibrant street markets, Chinese restaurants, cultural festivals, and unique architecture that often reflects Chinese design elements.</p>
</div>
<div class="card">
<img class="img" src="./image/img-8.png" alt="">
<h3>Moon</h3>
<p>The Moon's age suggests that it formed relatively shortly after the early solar system's creation.</p>
</div>
</div>
</div>
</body>
</html>