Skip to content

Instantly share code, notes, and snippets.

@pratikshabhisikar
Created August 11, 2011 11:57
Show Gist options
  • Save pratikshabhisikar/1139472 to your computer and use it in GitHub Desktop.
Save pratikshabhisikar/1139472 to your computer and use it in GitHub Desktop.
Using CSS in HTML
<html>
<head>
<title>Recipe</title>
<link href='style.css' rel='stylesheet' type='text/css' />
</head>
<body>
<div style='width: 320px;' align='center'>
<div class='stats' >
<div class='recipe_title' align='center'>
<span class='title_brace'>{</span><span>Title</span><span class='title_brace'>}</span>
</div>
<div class='recipe_descr'>
<span>Description</span>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment