| 123456789101112131415161718192021 | <!doctype html><html lang="en"><head>    <meta charset="utf-8">    <title>YssProject</title>    <base href="/">    <meta name="viewport" content="width=device-width, initial-scale=1">    <link rel="icon" type="image/x-icon" href="favicon.ico">    <!-- 使用系统字体替代Google Fonts以避免网络错误 -->    <!-- Material Icons & Material Symbols 本地/线上字体引入 -->    <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons" />    <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0" />    <link href="https://cdn.bootcdn.net/ajax/libs/font-awesome/6.4.0/css/all.min.css" rel="stylesheet">    <!-- Local import map to resolve bare specifier 'echarts' to local ESM file -->    <!-- Use local UMD build to provide window.echarts globally (avoid external CDN errors) -->    <script defer src="assets/echarts/echarts.min.js"></script>  </head><body>  <app-root></app-root></body></html>
 |