-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (43 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS -->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Card Hover</title>
</head>
<body>
<div class="container">
<div class="card__container">
<article class="card__article">
<img src="assets/img/photo-of-blue-water-and-distant-land.jpg" alt="photo-of-blue-water-and-distant-land" class="card__img">
<div class="card__data">
<span class="card__description">Ocean</span>
<h2 class="card__title">Blue Water And Distant Land</h2>
<a href="#" class="card__button">Read More</a>
</span>
</div>
</article>
<article class="card__article">
<img src="assets/img/puppy-at-the-beach.jpg" alt="puppy-at-the-beach" class="card__img">
<div class="card__data">
<span class="card__description">Puppy</span>
<h2 class="card__title">Puppy At The Beach</h2>
<a href="#" class="card__button">Read More</a>
</span>
</div>
</article>
<article class="card__article">
<img src="assets/img/waves-moving-through-the-ocean-at-dusk.jpg" alt="waves-moving-through-the-ocean-at-dusk" class="card__img">
<div class="card__data">
<span class="card__description">Waves</span>
<h2 class="card__title">Waves Moving Through The Ocean At Dusk</h2>
<a href="#" class="card__button">Read More</a>
</span>
</div>
</article>
</div>
</div>
</body>
</html>