-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
28 lines (27 loc) · 1.03 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
<!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 Building</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="container">
<div class="card">
<img src="https://images.unsplash.com/photo-1536323760109-ca8c07450053"
alt="Lago di Braies">
<div class="card__details">
<span class="tag">Nature</span>
<span class="tag">Lake</span>
<div class="name">Lago di Braies</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Consectetur sodales morbi dignissim sed diam pharetra vitae ipsum odio.</p>
<button>Read More</button>
</div>
</div>
</div>
</body>
</html>