I am working on creating a customizable and printable form using HTML, specifically for generating documents such as invoices and terms and conditions for my small business. I thought everything was correct, but...
Here is the HTML code:
<h1>Article 1</h1>
My Business agrees to provide services to the client in the following format:<br><br>
<ul>
<li>Event: <span contenteditable>Event Name</span></li>
<li>Date: <span contenteditable>Event Date</span></li>
<li>Time: <span contenteditable>Arrival Time</span></li>
<li>Location: <span contenteditable>Venue Address</span></li>
<li>Service Provided: <span contenteditable>Agreed Upon Service</span></li>
</ul>
CSS:
li { margin-left: 25px; list-style-type: square;}
Everything appeared perfectly when viewed locally in Google Chrome:
However, upon uploading it to my webserver and viewing the page online, all the formatting disappeared in Google Chrome:
What could have gone wrong?