-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (38 loc) · 1.65 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
32
33
34
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Icon shape masks demo</title>
<link href="css/style.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.css" type="text/css">
</head>
<body>
<div class="main">
<div id="grid">
</div>
<div class="iconwrap">
<div id="icon">
<img id="icona" src="img/icon.png" />
</div>
</div>
<a class="showgrid" href="#"><i class="fa fa-th" aria-hidden="true"></i> Show Grid</a>
<a class="hidegrid" href="#"><i class="fa fa-th" aria-hidden="true"></i> Hide Grid</a>
<div class="list">
<h2>Choose platform</h2>
<ul>
<a class="square shape current" href="#"><li><i class="fa fa-windows" aria-hidden="true"></i> Windows Phone</li></a>
<a class="ios shape" href="#"><li><i class="fa fa-apple" aria-hidden="true"></i> Apple iOS</li></a>
<a class="circle shape" href="#"><li><i class="fa fa-android" aria-hidden="true"></i> Android Circle</li></a>
<a class="squircle shape" href="#"><li><i class="fa fa-android" aria-hidden="true"></i> Android Squircle</li></a>
<a class="roundsquare shape" href="#"><li><i class="fa fa-android" aria-hidden="true"></i> Android Round Square</li></a>
</ul>
</div>
</div>
<script src='js/jquery-1.11.2.min.js' type="text/javascript"></script>
<script type="text/javascript" src='js/main.js'></script>
</body>
</html>