-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (53 loc) · 1.42 KB
/
Copy pathindex.html
File metadata and controls
61 lines (53 loc) · 1.42 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/favicon-32x32.png"
/>
<title>Blog preview card | Jumanji</title>
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<main>
<div id="card">
<div class="image_part">
<img
src="images/illustration-article.svg"
alt="Article Illustration Image"
/>
</div>
<div class="text_part">
<div class="label">
<p>Learning</p>
</div>
<div class="date">
<p>Published 21 Dec 2023</p>
</div>
<div class="title">
<h1>HTML & CSS foundations</h1>
</div>
<div class="text">
<p>
These languages are the backbone of every website, defining
structure, content, and presentation.
</p>
</div>
</div>
<div class="blogger_part">
<div class="avatar">
<img src="images/image-avatar.webp" alt="Greg Hooper Avatar" />
</div>
<div class="name">
<p>Greg Hooper</p>
</div>
</div>
</div>
</main>
</body>
</html>