-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.35 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="minimal blog card" description="simple minimal blog card">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Sora:wght@100..800&display=swap" rel="stylesheet">
<title>Minimal Blog Card</title>
</head>
<body>
<div class="wrapper">
<!--outside container-->
<div class="container">
<!--inside content-->
<div class="content">
<img src="./resources/Cactus.jpg" alt="Cactus">
<!--inside rectangle style-->
<div class="inside-rectangle">
<p>Design</p>
</div>
<h1 class="title">Embracing Minimalism</h1>
<p class="description">From minimalist sculptures to minimalist paintings, this blog will inspire you to appreciate the beauty that lies in simplicity.</p>
</div>
<!--bookmark-->
<div class="footer">
<p class="bookmark">Annie Spratt</p>
</div>
</div>
</div>
</body>
</html>