Tuesday, 23 November 2021

23/11/2021 LAYOUT 2

Untitled Document

LEFT
//
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script type="text/javascript" src="../jquery-3.6.0.js"></script>
<style>
#container{ width:990px}
#header {height:120px; background-color:#CC9900; margin-bottom:5px;}
#left { width: 200px; float: left;
   background-color: #999999; min-height:300px;}
#right { margin-left:205px; min-height:300px; background-color: #CCCC99;}
</style>
</head>

<body>
<div id="container">
<div id="header">HEAD</div>
<div id="left">LEFT</div>
    <div id="right">RIGHT</div>
</div>
</body>
</html>

1 comment: