Thread: Duplicate id
View Single Post
Old 03-22-2020, 10:21 AM   #3
Turtle91
A Hairy Wizard
Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.Turtle91 ought to be getting tired of karma fortunes by now.
 
Turtle91's Avatar
 
Posts: 3,361
Karma: 20212223
Join Date: Dec 2012
Location: Charleston, SC today
Device: iPhone 15/11/X/6/iPad 1,2,Air & Air Pro/Surface Pro/Kindle PW & Fire
Just a piece of, unasked for, advice:

Try not to use inline styles unless it is absolutely necessary. It bloats your code, making it much harder to edit, and longer for the device/app to load and render.

Instead, use a CSS file. Your HTML code will look something like this:

Code:
instead of:
<div style="clear:both; mso-break-type:section-break; page-break-before:auto">
<p style="font-size:16pt; line-height:150%; page-break-before:always">
<span style="font-family:Arial, sans-serif; font-size:16pt; font-weight:bold">Prima </span>
<a id="_s"></a>
<span style="font-family:Arial, sans-serif; font-size:16pt; font-weight:bold">settimana</span></p>

use CSS:
h3 {font-size:2em; font-family:Arial, sans-serif; font-weight:bold}

and HTML:
<h3>Prima settimana</h3>
Turtle91 is offline   Reply With Quote