This commit introduces a completely redesigned sponsor list page. The previous two-column layout is replaced with a modern, single-column auto-scrolling list that unifies all sponsors. A dynamic canvas animation has been added to the background for a more engaging visual experience. Previous versions of the page have been archived. This update also includes data corrections for sponsor names and minor fixes to the related PPT assets.
22 lines
579 B
HTML
22 lines
579 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Sponsor List</title>
|
|
<link rel="stylesheet" href="style.css?t=1610" />
|
|
</head>
|
|
|
|
<body>
|
|
<canvas id="background"></canvas>
|
|
<div class="container">
|
|
<header>
|
|
<h1>柔 佛 永 平 關 聖 宮 聯 誼 會</h1>
|
|
<h2>赞助者名单 Sponsor List</h2>
|
|
</header>
|
|
<div id="sponsorList" class="scrolling-list"></div>
|
|
</div>
|
|
<script src="script.js"></script>
|
|
</body>
|
|
</html>
|