Created
March 22, 2018 19:37
-
-
Save thatisuday/fd121c058d778d3db36cc4d4145ff23a to your computer and use it in GitHub Desktop.
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
<!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