-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgame.html
More file actions
39 lines (28 loc) · 1.12 KB
/
game.html
File metadata and controls
39 lines (28 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="game.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Arvo:400,400italic,700' rel='stylesheet' type='text/css'>
<script src="jquery-1.12.3.min.js"></script>
<script src="jquery.magnific-popup.min.js"></script>
<script>
$('.open-popup-link').magnificPopup({
type:'inline',
midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href.
});
</script>
</head>
<body>
<div class="file1">
<i class="fa fa-file-o fa-3x" aria-hidden="true"></i>
<p class="file-text">READ ME</p>
</div>
<div id="test-popup" class="white-popup mfp-hide">
Popup content
</div>
<a href="#test-popup" class="open-popup-link">Show inline popup</a>
</body>
</html>