Skip to content

Instantly share code, notes, and snippets.

@safranck
Created June 18, 2015 18:48
Show Gist options
  • Save safranck/0a29871cf1f28033a906 to your computer and use it in GitHub Desktop.
Save safranck/0a29871cf1f28033a906 to your computer and use it in GitHub Desktop.
Basic HTML Layout w/Embedded Stylesheet
<html>
<head>
<title>My Page Title</title>
<style type="text/css">
p {
color: blue;
font-size: 12px;
}
</style>
</head>
<body>
<!--This is an HTML Comment-->
<p>This is the body of my page</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment