Created
January 20, 2013 09:44
-
-
Save ufo22940268/4577544 to your computer and use it in GitHub Desktop.
html1
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
<head></head> | |
<body> | |
<div id="container" style="width:500px"> | |
<div id="header" style="width:500px;background-color:#FFA500;float:left;"> | |
<h1>html demo</h1> | |
</div> | |
<div id="menu" style="width:100px;height:300px;background-color:#FFA500;float:left"> | |
Menu</br> | |
HTML</br> | |
CSS</br> | |
Javascript</br> | |
</div> | |
<div id="content" style="width:400px;height:300px;float:left;"> | |
Content goes here. | |
</div> | |
<div id="foot" style="background-color:#66ccff;text-align:center"> | |
foot | |
</div> | |
</div> | |
</body> |
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
<head></head> | |
<body> | |
<div id="container" style="width:500px"> | |
<div id="header" style="width:500px;background-color:#FFA500;float:left;"> | |
<h1>html demo</h1> | |
</div> | |
<div id="menu" style="width:100px;height:300px;background-color:#FFA500;float:left"> | |
Menu</br> | |
HTML</br> | |
CSS</br> | |
Javascript</br> | |
</div> | |
<div id="content" style="width:400px;height:300px;float:left;"> | |
Content goes here. | |
</div> | |
<div id="foot" style="clear:both;background-color:#66ccff;text-align:center"> | |
foot | |
</div> | |
</div> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment