<!doctype html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<style>
/* inline styles work */
body {
font-size: 18px;
}
</style>
</head>
<body>
<script>
// inline script works
alert('hello, world');
</script>
</body>
</html>