OLD | NEW |
(Empty) | |
| 1 <!DOCTYPE html> |
| 2 <html> |
| 3 <head> |
| 4 <style type="text/css"> |
| 5 h1 { margin: 0px; } |
| 6 .bigRedText, .bigRedText a { font-size:20px; font-weight: bold; color: red;
} |
| 7 ul li { list-style-type: none; } |
| 8 </style> |
| 9 </head> |
| 10 <body> |
| 11 <div> |
| 12 <h1>Multiple paragraphs inside nested block</h1> |
| 13 <div class="testDiv"> |
| 14 <div> |
| 15 <p><span class="bigRedText">“(A)”:</span> Appetizers</p> |
| 16 <p>“(<a href="#">B</a>)”: <a href="#">Starters:</a> Soups &
Salads</p> |
| 17 <p>“<b>(</b><a href="#">C</a><b>)</b>”: Main Course: <a href
="#">Pasta</a></p> |
| 18 </div> |
| 19 </div> |
| 20 <h1>List with spaces after the leading dot</h1> |
| 21 <ul> |
| 22 <li>· Appetizers</li> |
| 23 <li>· <a href="#">Starters:</a> Soups & Salads</li> |
| 24 <li>· Main Course: <a href="#">Pasta</a></li> |
| 25 </ul> |
| 26 <h1>List without spaces after the leading dot</h1> |
| 27 <ul> |
| 28 <li><span class="bigRedText">·A</span>ppetizers</li> |
| 29 <li><span class="bigRedText">·S</span><a href="#">tarters:</a> Soup
s & Salads</li> |
| 30 <li><span class="bigRedText">·M</span>ain Course: <a href="#">Pasta
</a></li> |
| 31 </ul> |
| 32 <h1>first-letter with multiple punctuation characters</h1> |
| 33 <ul> |
| 34 <li><span class="bigRedText">“(A)”:</span> Appetizers</li> |
| 35 <li><span class="bigRedText">“(B)”:</span> <a href="#">Starter
s:</a> Soups & Salads</li> |
| 36 <li><span class="bigRedText">“(C)”:</span> Main Course: <a hre
f="#">Pasta</a></li> |
| 37 </ul> |
| 38 </div> |
| 39 </body> |
| 40 </html> |
OLD | NEW |