-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.13 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
<!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="css/styles.css" />
<title>Minimal Blog Card</title>
</head>
<body>
<div class="card">
<article>
<img src="./images/cactus_img.jpg" alt="" />
<button>Design</button>
<div>
<h2>Embracing Minimalism</h2>
<p>
From minimalist sculptures to minimalist paintings, this blog will
inspire you to appreciate the beauty that lies in simplicity.
</p>
</div>
<p class="name">Annie Spratt</p>
</article>
</div>
<div class="chika">
<article>
<img src="./images/Chika.jpg" alt="" />
<button>Cat</button>
<div>
<h2>Chika</h2>
<p>
"Chika" is my little cat who has been with me since high school,
and here she is sleeping comfortably.
</p>
</div>
<p class="name">Lucas Frade</p>
</article>
</div>
</body>
</html>