Created
August 11, 2011 11:57
-
-
Save pratikshabhisikar/1139472 to your computer and use it in GitHub Desktop.
Using CSS in HTML
This file contains 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
<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