-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 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 name="viewport" content="width=device-width,initial-scale=1">
<title>Simple CSS 3D Buttons</title>
<link rel="stylesheet" href="https://use.typekit.net/opg3wle.css">
<link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container">
<div class="box">
<h1>Simple CSS 3D Buttons</h1>
<div class="buttons">
<button class="button button-quora" type="button" name="button"><i class="fab fa-quora"></i>Quora</button>
<button class="button button-twitter" type="button" name="button"><i class="fab fa-twitter"></i>Twitter</button>
<button class="button button-instagram" type="button" name="button"><i class="fab fa-instagram"></i>Instagram</button>
<button class="button button-pinterest" type="button" name="button"><i class="fab fa-pinterest"></i>Pinterest</button>
</div>
</div>
</div>
</body>
</html>