Please i need help help with moving my table upward in an asp.net pages.
link to the image
https://ctrl.vi/i/pvJETQ0br
my code
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Reciept.aspx.cs" Inherits="Reciept" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1" runat="server">
<title>Meal Reciept </title>
<script type="text/javascript">
window.print();
window.onfocus = function () { window.close(); }
</script>
</head>
<body>
<form id="form1" runat="server">
<table border="2" style="width: 80%; height: 50%; font size: medium;">
<tr>
<td align="center" colspan="2">Meal Ticket</td>
</tr>
<tr>
<td align="left" class="style6">Names</td>
<td>
<asp:Label ID="Label1" runat="server" Font-Names="Agency FB" Font-Bold="True" Font-Size="Medium"></asp:Label>
</td>
</tr>
<tr>
<td align="left" class="style6" style="font-family: 'Agency FB'">Dept.</td>
<td>
<asp:Label ID="Label2" runat="server" Font-Names="Agency FB" Font-Bold="True" Font-Size="Medium"></asp:Label>
</td>
</tr>
<tr>
<td align="left" class="style6" style="font-family: 'Agency FB'">Company</td>
<td>
<asp:Label ID="Label3" runat="server" Font-Names="Agency FB" Font-Bold="True" Font-Size="Medium"></asp:Label>
</td>
</tr>
<tr>
<td align="left" class="style6" style="font-family: 'Agency FB'">Emp.No</td>
<td>
<asp:Label ID="Label4" runat="server" Font-Names="Agency FB" Font-Bold="True" Font-Size="Medium"></asp:Label>
</td>
</tr>
<tr>
<td align="left" class="style6" style="font-family: 'Agency FB'">Tick.No</td>
<td>
<asp:Label ID="Label5" runat="server" Font-Names="Agency FB" Font-Bold="True" Font-Size="Medium"
Width="100px"></asp:Label>
</td>
</tr>
<tr>
<td align="left" class="style6" style="font-family: 'Agency FB'">Value</td>
<td>₦<asp:Label ID="Label8" runat="server" Font-Names="Agency FB" Font-Bold="True" Font-Size="Medium"
Width="29px"></asp:Label>
</td>
</tr>
<tr>
<td align="left" class="style6" style="font-family: 'Agency FB'">Date</td>
<td>
<asp:Label ID="Label7" Font-Names="Agency FB" runat="server" Font-Bold="True" Font-Size="Medium"
Width="144px"></asp:Label>
</td>
</tr>
</table>
<asp:Label ID="Label6" runat="server" Width="318px"></asp:Label>
</form>
</body>
</html>