I have the page exactly like I would like it to look. Now looking at it i wish I would have added a background image. Is there a simple way around this. I know the code may look a little funny but this is how Spiceworks corrects the code.
<div style="text-align: center;">
<p style="font-size: 30px;"> </p>
<p style="font-size: 30px;"><span style="color:rgb(0, 128, 0)"><strong>WELCOME TO PARK CITY CREDIT UNION’s I.T. TICKET SYSTEM!</strong></span></p>
</div>
<div style="text-align: center;">
<p><span style="color:rgb(0, 0, 0)"><strong>Please do not email or chat, if you do so, you will be directed to open a ticket!</strong></span></p>
</div>
<div style="text-align: center;">
<p><strong>NEED IMMEDIATE ASSISTANCE and unable to reach I.T.??</strong> <strong>Call Locknet 1-877-408-1656 </strong></p>
<p><em>Note - Any tickets submitted after 4:00 PM may not get a response until the next business day</em>.</p>
<p> </p>
</div>
<p style="font-size: 17px;"><strong> The Ticket System is a new platform to better serve you as well as enable a more efficient way to support your IT needs in an appropriate prioritized order.</strong></p>
<p> </p>
<p style="font-size: 15px;"><strong><span style="text-decoration:underline">NEED HELP? We are here for you!</span></strong></p>
<p style="font-size: 14px;">Click on the <em>“New Ticket”</em> Tab and create your ticket. If your ticket has not been started/resolved within 3 hours, please contact IT.</p>
<hr />
<p style="font-size: 15px;"><span style="text-decoration:underline"><strong><em>How do I know my ticket came through?</em></strong></span></p>
<p style="font-size: 14px;">- You will receive an email from <em>[email protected]</em></p>
<p style="font-size: 14px;">-You will receive a second email letting you know who is working on your ticket</p>
<p style="font-size: 14px;">- You may recieve a phone call if your ticket requires follow up</p>
<hr />
I edited your code (and corrected a spelling mistake). Pretty simple fix:
<body style="background-image: url(http://lorempixel.com/1024/1024/); background-repeat: no-repeat; background-size: cover;">
<div style="text-align: center;">
<p style="font-size: 30px;"> </p>
<p style="font-size: 30px;"><span style="color:rgb(0, 128, 0)"><strong>WELCOME TO PARK CITY CREDIT UNION’s I.T. TICKET SYSTEM!</strong></span></p>
</div>
<div style="text-align: center;">
<p><span style="color:rgb(0, 0, 0)"><strong>Please do not email or chat, if you do so, you will be directed to open a ticket!</strong></span></p>
</div>
<div style="text-align: center;">
<p><strong>NEED IMMEDIATE ASSISTANCE and unable to reach I.T.??</strong> <strong>Call Locknet 1-877-408-1656 </strong></p>
<p><em>Note - Any tickets submitted after 4:00 PM may not get a response until the next business day</em>.</p>
<p> </p>
</div>
<p style="font-size: 17px;"><strong> The Ticket System is a new platform to better serve you as well as enable a more efficient way to support your IT needs in an appropriate prioritized order.</strong></p>
<p> </p>
<p style="font-size: 15px;"><strong><span style="text-decoration:underline">NEED HELP? We are here for you!</span></strong></p>
<p style="font-size: 14px;">Click on the <em>“New Ticket”</em> Tab and create your ticket. If your ticket has not been started/resolved within 3 hours, please contact IT.</p>
<hr />
<p style="font-size: 15px;"><span style="text-decoration:underline"><strong><em>How do I know my ticket came through?</em></strong></span></p>
<p style="font-size: 14px;">- You will receive an email from <em>[email protected]</em></p>
<p style="font-size: 14px;">-You will receive a second email letting you know who is working on your ticket</p>
<p style="font-size: 14px;">- You may receive a phone call if your ticket requires follow up</p>
</body>
You need to change the image, obviously, but this code has a background image for you. Also, I would suggest you format the code differently, because the way it is currently formatting is a little hard to read. If you're going to be doing programming for the web (HTML, CSS, Javascript, etc), I recommend you use the Brackets IDE. It's not for formatting but I love it.
Anyways, GLHF!