-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex2.html
More file actions
25 lines (25 loc) · 908 Bytes
/
Copy pathindex2.html
File metadata and controls
25 lines (25 loc) · 908 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Card design</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="card-container">
<div class="card">
<img src="pic.jpg" alt="" class="card-image">
<div class="card-content">
<div class="card-tags">
<span class="tag">Nature</span>
<span class="tag">Lake</span>
</div>
<h2 class="card-title">Aditya</h2>
<p class="card-describtion">Lorem, ipsum dolor sit amet consectetur adipisicing elit. Atque veniam distinctio aut iusto beatae ea quia fugit ab temporibus neque.</p>
<a href="#" class="read-more">read more</a>
</div>
</div>
</div>
</body>
</html>