-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCSSAnimationCard.html
More file actions
33 lines (32 loc) · 1.05 KB
/
CSSAnimationCard.html
File metadata and controls
33 lines (32 loc) · 1.05 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
<!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">
<link rel="stylesheet" type="text/css" href="CSSAnimationCard.css">
<title>Css Animation card</title>
</head>
<body>
<div class="card">
<div class="lines"></div>
<div class="imgBx">
<img src="img.jpg">
</div>
<div class="content">
<div class="details">
<h2>Your Name <br><span>Senior Web Developer</span></h2>
<div class="data">
<h3>102<br><span>Posts</span></h3>
<h3>560K<br><span>Followers</span></h3>
<h3>1<br><span>Following</span></h3>
</div>
<div class="actionBtn">
<button>Follow</button>
<button>Message</button>
</div>
</div>
</div>
</div>
</body>
</html>