-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.html
More file actions
39 lines (36 loc) · 1.39 KB
/
2.html
File metadata and controls
39 lines (36 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card 02</title>
<link href="https://cdn.jsdelivr.net/npm/remixicon@2.5.0/fonts/remixicon.css" rel="stylesheet">
<link rel="stylesheet" href="2.css">
</head>
<body>
<article class="card">
<div class="card__publication">
<img src="./post__image.jpg" alt="">
<div>
<span class="card__author">
<i class="ri-user-line"></i> Julio Codes
</span>
<span class="card__date">
<i class="ri-calendar-line"></i> October 30, 2022
</span>
</div>
</div>
<div class="card__info">
<h2 class="card__title">Artificial intelligence</h2>
<span class="card__subtitle">A peek at what lies ahead</span>
<p class="card__description">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ad aliquam aliquid asperiores corporis earum et, laborum maxime molestias non odit omnis, praesentium. Et hic molestiae odio repellat, rerum sint vitae?
</p>
<a href="#" class="card__cta">
Read more <span>→</span>
</a>
</div>
</article>
</body>
</html>