CNSA-216-FP/FWA_MAIN/Default.aspx

47 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2024-03-20 10:04:27 -07:00
<%@ 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>
2024-03-20 10:04:27 -07:00
</head>
<body runat="server">
<div class="parent">
2024-03-20 10:04:27 -07:00
<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>
2024-03-20 10:04:27 -07:00
</div></body>
</asp:Content>