File size: 10,359 Bytes
ec337f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Polloland-PRC Import Export Bank</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background-color: #d92332;
            color: white;
            padding: 10px 0;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        header img {
            height: 50px;
            margin-right: 10px;
        }
        nav {
            background-color: #333;
            overflow: hidden;
        }
        nav a {
            float: left;
            display: block;
            color: white;
            text-align: center;
            padding: 14px 20px;
            text-decoration: none;
        }
        nav a:hover {
            background-color: #ddd;
            color: black;
        }
        .container {
            padding: 20px;
        }
        .section {
            background-color: white;
            margin: 20px 0;
            padding: 20px;
            border-radius: 5px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
        .manager-message {
            background-color: #f4f4f4;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
        }
        .manager-message h3 {
            color: #d92332;
        }
        .manager-message p {
            font-size: 16px;
            line-height: 1.6;
        }
        .notice {
            background-color: #ffcccc;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid #ff6666;
        }
        .notice h3 {
            color: #cc0000;
        }
        .notice p {
            font-size: 16px;
            line-height: 1.6;
        }
        .currency-converter {
            background-color: #e6f7ff;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid #66ccff;
        }
        .currency-converter h3 {
            color: #0066cc;
        }
        .currency-converter label {
            display: block;
            margin-bottom: 5px;
        }
        .currency-converter input, .currency-converter select {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
        }
        .currency-converter button {
            background-color: #0066cc;
            color: white;
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .currency-converter button:hover {
            background-color: #004080;
        }
        .stock-graph {
            background-color: #fff;
            padding: 20px;
            border-radius: 5px;
            margin-bottom: 20px;
            border: 1px solid #ccc;
        }
        .stock-graph h3 {
            color: #333;
        }
    </style>
</head>
<body>

    <header>
        <img src="https://upload.wikimedia.org/wikipedia/commons/f/fa/Flag_of_the_People%27s_Republic_of_China.svg" alt="Chinese Flag">
        <h1>Polloland-PRC Import Export Bank</h1>
    </header>

    <nav>
        <a href="#news">News</a>
        <a href="#services">Services</a>
        <a href="#contact">Contact</a>
        <a href="#manager">Manager's Message</a>
    </nav>

    <div class="container">
        <div class="notice">
            <h3>Important Notice</h3>
            <p>Polloland has defaulted on its debt. Please be advised that all transactions involving Lucky Chicken (LC) currency may be subject to additional scrutiny and potential delays. We are working closely with relevant authorities to mitigate the impact on our clients. <a href="https://www.youtube.com/watch?si=8t87ny1VeXAxRqYH&embeds_referring_euri=https%3A%2F%2Fwww.bing.com%2F&embeds_referring_origin=https%3A%2F%2Fwww.bing.com&source_ve_path=MTY0NTA2LDE2NDUwNg&v=dQw4w9WgXcQ&feature=youtu.be" target="_blank">For More Information</a></p>
        </div>

        <div id="news" class="section">
            <h2>News</h2>
            <p>Stay updated with the latest news and announcements from Polloland-PRC Import Export Bank.</p>
            <ul>
                <li><a href="#">New Trade Financing Options Announced</a></li>
                <li><a href="#">Polloland-PRC Bank Supports New Export Initiatives</a></li>
                <li><a href="#">Bank Launches Digital Trade Platform</a></li>
            </ul>
        </div>

        <div id="services" class="section">
            <h2>Services</h2>
            <p>Explore the services offered by Polloland-PRC Import Export Bank to support your international trade needs.</p>
            <ul>
                <li><strong>Trade Financing:</strong> Flexible financing solutions to support your import and export activities, denominated in Lucky Chicken (LC).</li>
                <li><strong>Letters of Credit:</strong> Secure and reliable payment mechanisms for international trade, denominated in Lucky Chicken (LC).</li>
                <li><strong>Export Credit Insurance:</strong> Protect your business from non-payment risks, denominated in Lucky Chicken (LC).</li>
                <li><strong>Currency Exchange:</strong> Competitive rates for foreign currency transactions, including Lucky Chicken (LC).</li>
            </ul>
        </div>

        <div id="contact" class="section">
            <h2>Contact Us</h2>
            <p>For inquiries and more information, please contact us:</p>
            <address>
                Polloland-PRC Import Export Bank<br>
                No. 123 Trade Street, Xicheng District<br>
                Beijing, China<br>
                Phone: +86 10 1234 5678<br>
                Email: [email protected]
            </address>
        </div>

        <div id="manager" class="manager-message">
            <h3>Message from the Manager</h3>
            <p>Dear Valued Clients and Partners,</p>
            <p>As the manager of Polloland-PRC Import Export Bank, I am committed to providing you with the best financial solutions to support your international trade activities. Our bank is dedicated to fostering economic growth and strengthening trade relations between Polloland and the People's Republic of China.</p>
            <p>We continuously strive to innovate and improve our services to meet your evolving needs. Thank you for your trust and partnership.</p>
            <p>Sincerely,<br>Julian Herrera<br>Manager, Polloland-PRC Import Export Bank</p>
        </div>

        <div class="currency-converter">
            <h3>Currency Converter</h3>
            <p>1 Yuan = 1688 Lucky Chicken (LC)</p>
            <form>
                <label for="amount">Amount:</label>
                <input type="number" id="amount" name="amount" required>
                <label for="fromCurrency">From:</label>
                <select id="fromCurrency" name="fromCurrency">
                    <option value="LC">Lucky Chicken (LC)</option>
                    <option value="Yuan">Yuan</option>
                </select>
                <label for="toCurrency">To:</label>
                <select id="toCurrency" name="toCurrency">
                    <option value="Yuan">Yuan</option>
                    <option value="LC">Lucky Chicken (LC)</option>
                </select>
                <button type="button" onclick="convertCurrency()">Convert</button>
                <p id="result"></p>
            </form>
        </div>

        <div class="stock-graph">
            <h3>Polloland (001688 Shenzhen Stock) - 10/1/24</h3>
            <canvas id="stockChart" width="400" height="200"></canvas>
        </div>
    </div>

    <footer>
        <p>&copy; 2023 Polloland-PRC Import Export Bank. All rights reserved.</p>
    </footer>

    <script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
    <script>
        function convertCurrency() {
            const amount = parseFloat(document.getElementById('amount').value);
            const fromCurrency = document.getElementById('fromCurrency').value;
            const toCurrency = document.getElementById('toCurrency').value;
            let result;

            if (fromCurrency === 'LC' && toCurrency === 'Yuan') {
                result = amount / 1688;
            } else if (fromCurrency === 'Yuan' && toCurrency === 'LC') {
                result = amount * 1688;
            } else {
                result = amount;
            }

            document.getElementById('result').innerText = `${amount} ${fromCurrency} = ${result.toFixed(2)} ${toCurrency}`;
        }

        const ctx = document.getElementById('stockChart').getContext('2d');
        const stockChart = new Chart(ctx, {
            type: 'line',
            data: {
                labels: ['9:30', '10:00', '10:30', '11:00', '11:30', '12:00', '12:30', '13:00', '13:30', '14:00', '14:30', '15:00'],
                datasets: [{
                    label: 'Polloland (001688 Shenzhen Stock)',
                    data: [100, 95, 90, 85, 80, 75, 70, 65, 60, 55, 50, 52.79],
                    backgroundColor: 'rgba(255, 99, 132, 0.2)',
                    borderColor: 'rgba(255, 99, 132, 1)',
                    borderWidth: 1,
                    pointRadius: 5,
                    pointBackgroundColor: 'rgba(255, 99, 132, 1)',
                    pointBorderColor: '#fff',
                    pointHoverRadius: 7,
                    pointHoverBackgroundColor: 'rgba(255, 99, 132, 1)',
                    pointHoverBorderColor: '#fff',
                    pointHoverBorderWidth: 2,
                    pointHitRadius: 10
                }]
            },
            options: {
                scales: {
                    y: {
                        beginAtZero: false
                    }
                }
            }
        });
    </script>

</body>
</html>