-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (66 loc) · 2.04 KB
/
Copy pathindex.html
File metadata and controls
66 lines (66 loc) · 2.04 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
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>Blog Cards</title>
</head>
<body>
<div class="container">
<div class="card">
<div class="card-header">
<img src="rover.jpeg" alt="" />
</div>
<div class="card-body">
<span class="tag tag-teal">Technology</span>
<h4>Why is the Tesla Cybertruck designed the way it is?</h4>
<p>An exploration into the truck's polarising design.</p>
<div class="user">
<img src="user-1.jpg" alt="" />
<div class="user-info">
<h5>Carrie Brewer</h5>
<small>2h ago</small>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<img src="ballons.jpeg" alt="ballons" />
</div>
<div class="card-body">
<span class="tag tag-purple">Popular</span>
<h4>How to Keep Going When You Don't Know What's Next</h4>
<p>
The future can be scary, but there are ways to deal with that fear.
</p>
<div class="user">
<img src="user-2.jpg" alt="user 2" />
<div class="user-info">
<h5>Jerome Walton</h5>
<small>Yesterday</small>
</div>
</div>
</div>
</div>
<div class="card">
<div class="card-header">
<img src="city.jpeg" alt="city" />
</div>
<div class="card-body">
<span class="tag tag-pink">Design</span>
<h4>10 Rules of Dashboard Design</h4>
<p>Dashboard Design Guidelines</p>
<div class="user">
<img src="user-3.jpg" alt="user 3" />
<div class="user-info">
<h5>Lewis Daniels</h5>
<small>23 Dec 2019</small>
</div>
</div>
</div>
</div>
</div>
</body>
</html>