CSS Baisc Web Layout

<!–Stylesheet examples –>

<html>
<head>
          <title>Cascade Stylesheet</title>
<style type=”text/css”>

/* CSS Class */

.tbl {
          width:200px;
           height:100px;
           font-family:verdana,arial;
           border-width:1px;
           border-style:solid;
          border-color:#000000;
           background-color:#FFFF00;
}

/*Css selector*/

P {
          font-weight: bold;
          text-transform: uppercase;
}

</style>
</head>
<body>
<h1 style=”font-style:italic;”>Cascade Inline Stylesheet</h1>
<table class="tbl">
    <tr><td>Cell 1</td><td>Cell 2</td></tr>
    <tr><td>Cell 3</td><td>Cell 4</td></tr>
</table>

<p>Paragraph 1</p>
<p>Paragraph 2</p>
<p>Paragraph 3</p>

 

</head>
</html>