Hi @Gani_tpt,
Based on your description, I think you want to achieve something like the following.
<html>
<head runat="server">
<title></title>
<asp:ContentPlaceHolder ID="head" runat="server">
</asp:ContentPlaceHolder>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<style>
.body {
width: 99%;
height: 98%;
}
.Header {
width: 100%;
background-color: Green;
color: white;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div id="body" class="body">
<div id="Header" class="Header">
<table style="width: 100%">
<tr>
<td>
</td>
<td align="center" style="font-family: Arial; font-size: 20px; color: white; font-weight: bold;">Company Title
</td>
<td>
<ul class="nav nav-tabs navbar-right">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button" aria-expanded="false">
<img src="../images/Settings.png" width="20" height="20" /></a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Help</a></li>
<li><a class="dropdown-item" href="#">GoTo Your Menu</a></li>
<li><a class="dropdown-item" href="#">Logout</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">Separated link</a></li>
</ul>
</li>
</ul>
</td>
</tr>
</table>
</div>
</div>
<div id="homemenu">
</div>
<div>
<asp:ContentPlaceHolder ID="
</asp:ContentPlaceHolder>
</div>
</form>
</body>
</html>
Best regards,
Lan Huang
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.