-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjohn.HTML
More file actions
44 lines (44 loc) · 1.43 KB
/
john.HTML
File metadata and controls
44 lines (44 loc) · 1.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card - Easy Tutorials</title>
<link rel="stylesheet" href="john.CSS">
</head>
<body>
<div class="container">
<div class="card">
<div class="card-inner">
<div class="front">
<h2>Emmanuel Nzube</h2>
<p>Web designer Nigeria</p>
<button>Hover me</button>
</div>
<div class="back">
<img src="image/wave-hand.png">
<h1>Emmanuel <span>Nzube</span></h1>
<p>im a web developer currently working <span>@microsoft</span> to make websites. </p>
<div class="row">
<div class="col">
<h2>12k</h2>
<p>Followers</p>
</div>
<div class="col">
<h2>250</h2>
<p>Following</p>
</div>
<div class="col">
<h2>5k</h2>
<p>Likes</p>
</div>
</div>
<div class="row">
<button><a href="https://www.instagram.com/" target="_parent">Follow</a></button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>