-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcv.html
More file actions
32 lines (32 loc) · 1.37 KB
/
Copy pathcv.html
File metadata and controls
32 lines (32 loc) · 1.37 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CV — 史力爱卫</title>
<link rel="icon" type="image/png" href="https://github.com/shiliaiwei.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700;800;900&family=Noto+Sans+Khmer:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="css/cv-dashboard.css">
</head>
<body>
<div class="cv-app">
<nav class="tags-bar" id="tags-bar">
<div class="role-tags" id="role-tags"></div>
<div class="type-tabs" id="type-tabs"></div>
</nav>
<main class="main-content">
<div class="paper-wrap" id="paper-wrap">
<article id="paper" class="paper"></article>
</div>
<aside id="insights" class="insights-panel"></aside>
</main>
<button class="insights-toggle" id="insights-toggle" type="button" aria-label="Toggle insights">
<i class="fa-solid fa-lightbulb"></i>
</button>
</div>
<script src="js/cv-dashboard.js"></script>
</body>
</html>