Skip to content

Instantly share code, notes, and snippets.

@thatisuday
Created March 22, 2018 19:37
Show Gist options
  • Save thatisuday/fd121c058d778d3db36cc4d4145ff23a to your computer and use it in GitHub Desktop.
Save thatisuday/fd121c058d778d3db36cc4d4145ff23a to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>Includes Example</title>
<link rel="stylesheet" href="http://website.com/style.css">
<script src="http://website.com/script.js"></script>
<style>
/* located in includes folder */
html,
body {
padding: 0;
margin: 0;
font-size: 14px;
}
</style>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment