Skip to content

Instantly share code, notes, and snippets.

@fwolf
Created February 28, 2015 05:18
Show Gist options
  • Save fwolf/240662048be07c9c1954 to your computer and use it in GitHub Desktop.
Save fwolf/240662048be07c9c1954 to your computer and use it in GitHub Desktop.
Stuff when learning HighCharts, 2012
<?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 &lt;[email protected]&gt;, 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 &copy; 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