-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (28 loc) · 922 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>cactus card</title>
<link rel="stylesheet" href="card.css" />
</head>
<body>
<div class="parent-div">
<div class="card-body">
<img src="cactus_img.jpg" alt="Image of cactus plant" />
<div>Design</div>
<br />
<span class="bracing">Embracing minimalism</span><br />
<span class="second">From minimalist sculptures to minimalist</span
><br />
<span class="third">paintings, this blog will inspire you to</span
><br />
<span class="forth">appreciate the beauty that lies in simplicity</span>
<hr />
<span class="author">Annie Spratt</span>
</div>
<!--The card-body ends here -->
</div>
<!--The parent div ends here -->
</body>
</html>