<%@ Page Title="Title" Language="C#" MasterPageFile="main.master" CodeBehind="~/Default.aspx.cs" Inherits="FWA_MAIN.Default" %> <asp:Content runat="server" ContentPlaceHolderID="cph1"> <head> <link href="main.css" rel="stylesheet" type="text/css" /> <style> .parent { position: relative; height: 100%; } .child { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); } h1{ text-align: center; } </style> </head> <body runat="server"> <div class="parent"> <div class="child"> <h1>Welcome to Louis' Pharmacy!</h1> <br/><br/> <h1>Use the pane on the left to navigate</h1> <h1>Make a selection and right click for more options</h1> </div> </div></body> </asp:Content>