Skip to content

Instantly share code, notes, and snippets.

@glegoux
Last active May 10, 2016 20:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glegoux/6e263f98c7336ea0edb4 to your computer and use it in GitHub Desktop.
Save glegoux/6e263f98c7336ea0edb4 to your computer and use it in GitHub Desktop.
Template HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Page Title</title>
<meta name="description" content="Ma description" />
<!-- -CSS -->
<link rel="stylesheet" href="file.css">
<style type="text/css">
p {
font-style: italic;
font-weight: bold;
font-size:20px;
}
</style>
<!-- JS -->
<script type="text/javascript" src="file.js"></script>
<script type="text/javascript">
console.log("Hello World !")
</script>
</head>
<body>
<p style="background-color:red;color:white;font-family:verdana;" onclick="console.log('I click!')">
Hello World !
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment