Skip to content

Commit 23e513c

Browse files
committed
956797: Resolved the given feedback.
1 parent 5049845 commit 23e513c

File tree

1 file changed

+61
-32
lines changed
  • HTML to PDF/Blink/HtmlToPdfWithUnicodeTOC/.NET/HtmlToPdfWithUnicodeTOC/Data

1 file changed

+61
-32
lines changed
Lines changed: 61 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,67 @@
1-
<html>
1+
<!DOCTYPE html>
2+
<html lang="en">
23
<head>
3-
<style>
4-
body
5-
{
6-
text-align: left;
7-
font-size: large;
8-
padding-left: 5px;
9-
}
10-
</style>
4+
<meta charset="UTF-8">
5+
<title>Sample Document with Unicode TOC</title>
6+
<style>
7+
body {
8+
font-family: Arial, sans-serif;
9+
line-height: 1.6;
10+
padding: 20px;
11+
}
12+
h1, h2 {
13+
color: #2c3e50;
14+
}
15+
ul.toc {
16+
list-style-type: none;
17+
padding-left: 0;
18+
}
19+
ul.toc li {
20+
margin: 5px 0;
21+
}
22+
ul.toc a {
23+
text-decoration: none;
24+
color: #007BFF;
25+
}
26+
ul.toc a:hover {
27+
text-decoration: underline;
28+
}
29+
</style>
1130
</head>
1231
<body>
1332

14-
<h1>Syncfusion</h1>
15-
16-
<h2>Introduction</h2>
17-
Syncfusion is the enterprise technology partner of choice for software development, delivering a broad range of web, mobile, and desktop controls coupled with a service-oriented approach throughout the entire application life cycle.
18-
<h2>Products</h2>
19-
<h4>WEB</h4>
20-
The most comprehensive suite for enterprise web development.
21-
<h4>Desktop</h4>
22-
Comprehensive suite of over 115 components including the fastest chart and grid components.
23-
<h4>Mobile</h4>
24-
Comprehensive suite of components for Xamarin.iOS, Xamarin.Android and Xamarin.Forms including the fastest chart and grid.
25-
<h2>Consulting</h2>
26-
We can build web, mobile, and desktop applications better and faster than anyone since we build on top of our award-winning suite of components and frameworks, saving you time and money.
27-
<h2>Company</h2>
28-
<h4>About us</h4>
29-
Syncfusion has established itself as the trusted partner worldwide for use in mission-critical applications. Founded in 2001 and headquartered in Research Triangle Park, N.C., Syncfusion has more than 12,000 customers, including large financial institutions, Fortune 100 companies, and global IT consultancies.
30-
<h4>contact us</h4>
31-
Morrisville Office
32-
Company Headquarters
33-
2501 Aerial Center Parkway
34-
Suite 200
35-
Morrisville, NC 27560
36-
USA
33+
<h1>📘 Sample Document</h1>
34+
35+
<h2>📑 Table of Contents</h2>
36+
<ul class="toc">
37+
<li>📖 <a href="#introduction">Introduction</a></li>
38+
<li>🧰 <a href="#features">Features</a></li>
39+
<li>⚙️ <a href="#installation">Installation</a></li>
40+
<li>📝 <a href="#usage">Usage</a></li>
41+
<li>📞 <a href="#contact">Contact</a></li>
42+
</ul>
43+
44+
<hr>
45+
46+
<h2 id="introduction">📖 Introduction</h2>
47+
<p>This document demonstrates how to use Unicode characters to enhance your HTML content and navigation experience.</p>
48+
49+
<h2 id="features">🧰 Features</h2>
50+
<ul>
51+
<li>✅ Easy to read</li>
52+
<li>🎯 Clear structure</li>
53+
<li>🌍 Supports multilingual content</li>
54+
<li>🔠 Uses Unicode characters</li>
55+
</ul>
56+
57+
<h2 id="installation">⚙️ Installation</h2>
58+
<p>Just open this HTML file in a modern web browser. No additional tools required.</p>
59+
60+
<h2 id="usage">📝 Usage</h2>
61+
<p>You can copy and paste Unicode characters from websites like <a href="https://unicode-table.com/en/">unicode-table.com</a> or use emoji keyboards on your OS.</p>
62+
63+
<h2 id="contact">📞 Contact</h2>
64+
<p>For more information, email us at: <a href="mailto:info@example.com">info@example.com</a></p>
65+
3766
</body>
3867
</html>

0 commit comments

Comments
 (0)