2021-04-10 17:35:20 -07:00

20 lines
381 B
Plaintext

<cfset pagetitle = "Home Page">
<cfinclude template="../templates/Header.cfm">
<style>
h1 {
font-size: 48px;
}
.content {
padding: 35px;
color: #3A7FF1;
}
</style>
<div class="content">
<h1>Error 404</h1>
<p>Unfortunately the page you're attempting to access has either not yet been added or does not exist.</p>
</div>
<cfinclude template="../templates/Footer.cfm">