-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·28 lines (24 loc) · 1.04 KB
/
index.php
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>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>SVG Hover Testing</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta property="og:title" content="svgtest" />
<meta property="og:type" content="website" />
<meta property="og:image" content="http://svgtest.forrest-tanaka.com/preview.png" />
<meta property="og:url" content="http://svgtest.forrest-tanaka.com" />
<meta property="og:description" content="Demonstration of a web SVG with hoverable arbitrary shapes." />
<link rel="stylesheet" href="css/normalize.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="object-wrapper">
<?php include ("img/system-map.svg"); ?>
</div>
<script src="js/vendor/jquery-2.1.1.min.js"></script>
<script src="js/scripts.min.js"></script>
</body>
</html>