Tuesday, February 10, 2015

Html layouts

,
Contoh Html Layouts
<!DOCTYPE html>
<html>

<head>
<style>
#header {
    background-color:black;
    color:white;
    text-align:center;
    padding:5px;
}
#nav {
    line-height:30px;
    background-color:#eeeeee;
    height:300px;
    width:100px;
    float:left;
    padding:5px;      
}
#section {
    width:350px;
    float:left;
    padding:10px;  
}
#footer {
    background-color:black;
    color:white;
    clear:both;
    text-align:center;
   padding:5px;  
}
</style>
</head>

<body>

<div id="header">
<h1>Comon CodeIgniter</h1>
</div>

<div id="nav">
<b>C</b>omon<br>
<b>C</b>ode<br>
<b>I</b>gniter<br>
</div>

<div id="section">
<h2>Firman Herliansyah</h2>
<p>
Nama saya Firman Herliansyah</p>
<p>
Umur saya 17 tahun.
</p>
</div>

<div id="footer">
Comon CodeIgniter
</div>

</body>

</html>

0 comments to “Html layouts”

Post a Comment