Created
February 28, 2015 05:18
-
-
Save fwolf/240662048be07c9c1954 to your computer and use it in GitHub Desktop.
Stuff when learning HighCharts, 2012
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$s_title = 'Highcharts JS Example'; | |
echo<<<EOF | |
<?xml version="1.0" encoding="utf-8"?> | |
<!DOCTYPE html | |
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta http-equiv="Content-Language" content="utf-8" /> | |
<meta name="Author" content="Fwolf <[email protected]>, http://www.fwolf.com/" /> | |
<link rel="stylesheet" href="../../css/reset.css" type="text/css" media="screen, print" /> | |
<link rel="stylesheet" href="../../css/default.css" type="text/css" media="screen, print" /> | |
<meta name="Description" content="$s_title" /> | |
<title><$s_title</title> | |
<style type="text/css" media="screen"> | |
<!-- | |
h1 { | |
margin-top: -0.8em; | |
} | |
--> | |
</style> | |
</head> | |
<body> | |
<h1>$s_title</h1> | |
<script type="text/javascript" src="./inc/common.js"></script> | |
<div id="footer"> | |
<span id="copyright"> | |
Copyright © 2005-2012 <a href="http://www.fwolf.com/">Fwolf</a>, All Rights Reserved. | |
</span> | |
</div> | |
</body> | |
</html> | |
EOF | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment