-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 882 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
33
<!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>Minimal Blog Card</title>
</head>
<body>
<div class="page">
<div class="card">
<div class="img">
<img src="./cactus_img.jpg" alt="cactus_img" />
</div>
<div class="tag">
<p>Design</p>
</div>
<div class="heading">
<h3>Embracing Minimalism</h3>
</div>
<div class="text">
<p>
From minimalist sculptures to minimalist paintings, this blog will
inspire you to appreciate the beauty that lies in simplicity.
</p>
</div>
</div>
<div class="author">
<p>Annie Spratt</p>
</div>
</div>
</body>
</html>