-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
57 lines (54 loc) · 1.93 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 其他 meta 标签和标题将由 JS 动态插入 -->
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Serif+SC:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<div class="page-container">
<!-- 左侧个人信息 -->
<div class="left-column">
<section id="profile">
<div class="profile-content">
<!-- 将由JS填充 -->
</div>
</section>
<section id="contact">
<h2>
<span class="title-cn">联系方式</span>
<span class="title-en">Contact</span>
</h2>
<div class="contact-icons">
<!-- 将由JS填充 -->
</div>
</section>
</div>
<!-- 右侧内容 -->
<div class="right-column">
<section id="social">
<h2>
<span class="title-cn">社交媒体</span>
<span class="title-en">Social Media</span>
</h2>
<div class="social-grid">
<!-- 将由JS填充 -->
</div>
</section>
<section class="portfolio">
<h2>
<span class="title-cn">作品展示</span>
<span class="title-en">Works Show</span>
</h2>
<div class="project-container">
<!-- 将由JS填充 -->
</div>
</section>
</div>
</div>
<script src="script.js"></script>
</body>
</html>