I am looking to enhance my html page with a sidebar navigation menu. Here is the current code snippet:
<html>
<head>
<title>Admin dashboard</title>
</head>
<header style="height:100px; background-color:#666; padding- top:35px"><h2 style="color:#FFF">Dashboard</h2></header>
<body>
<div style="width:100%; height:100px">
<div style="background-color:#aaa; height:550px;width:200px;float:left;">
<div><b>Main Menu</b></div>
HTML<br />
PHP<br />
PERL...
</div>
<div style="background-color:#eee; height:550px;width:1132px;float:left;">
<p></p>
</div>
<div style="background-color:#b5dcb3;clear:both">
<center>
Copyright@GIMT
</center>
</div>
</div>
</body>
</html>
I would like to incorporate a sidebar navigation menu into the existing code. This is the part where I want to make the addition:
<div style="background-color:#aaa; height:550px;width:200px;float:left;">
<div><b>Main Menu</b></div>
HTML<br />
PHP<br />
PERL...
</div>
Can anyone guide me on how to achieve this?