-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (28 loc) · 1.26 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
29
30
31
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans:400,700" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<title>Pure CSS 3D image flip effects on hover</title>
</head>
<body>
<div class="card">
<div class="front"><img src="img/person-2.jpg" alt="person-1"></div>
<div class="back">
<div class="details">
<h2>Kate Simon<br><span>Senior Designer</span></h2>
<div class="social-icons">
<a href="#"><i class="fab fa-facebook-f" aria-hidden="true"></i></a>
<a href="#"><i class="fab fa-twitter" aria-hidden="true"></i></a>
<a href="#"><i class="fab fa-google-plus" aria-hidden="true"></i></a>
<a href="#"><i class="fab fa-linkedin" aria-hidden="true"></i></a>
<a href="#"><i class="fab fa-instagram" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</body>
</html>