Skip to content

Instantly share code, notes, and snippets.

@jpoz
Created January 19, 2010 06:30
Show Gist options
  • Select an option

  • Save jpoz/280722 to your computer and use it in GitHub Desktop.

Select an option

Save jpoz/280722 to your computer and use it in GitHub Desktop.
<html>
<head>
<title>This is the title of the website</title>
<style type="text/css" media="screen">
body {
background: limegreen;
}
#main_title {
font-size: 100px;
}
.main {
background: white;
padding: 10px;
font-weight: bold;
font-size: 12px;
color: red;
}
</style>
</head>
<body>
<p id='main_title'>
This is content!
</p>
<p class='main'>
This is some more content.
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment