-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
59 lines (54 loc) · 1.95 KB
/
index.html
File metadata and controls
59 lines (54 loc) · 1.95 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
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bell | Homepage</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
</head>
<body>
<div class="container">
<header>
<img src="images/profile.png" alt="头像" class="profile-img">
<h1>Bell</h1>
<p class="tagline">About Me</p>
</header>
<section class="about">
<h2>TBC</h2>
<p>I will write something later</p>
</section>
<section class="projects">
<h2>My work</h2>
<div class="project-grid">
<div class="project-card">
<h3>Projects</h3>
<p>Description</p>
<a href="#" class="btn">Details</a>
</div>
<div class="project-card">
<h3>Other things</h3>
<p>Despription</p>
<a href="#" class="btn">Details</a>
</div>
</div>
</section>
<section class="contact">
<h2>Contact Me</h2>
<div class="social-links">
<a href="https://github.com/Bellahra" target="_blank"><i class="fab fa-github"></i></a>
<a href="#" target="_blank"><i class="fab fa-linkedin"></i></a>
<a href="#" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="mailto:1947342664@qq.com"><i class="fas fa-envelope"></i></a>
</div>
</section>
<footer>
<p>© <span id="year"></span> All rights reserved.</p>
</footer>
</div>
<script>
// 自动更新年份
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>