-
Notifications
You must be signed in to change notification settings - Fork 1
/
PersonalNet.html
89 lines (89 loc) · 2.76 KB
/
PersonalNet.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ricky's Personal Page</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f0f8ff;
color: #333;
margin: 0;
padding: 0;
}
header {
background-color: #00aaff;
color: white;
padding: 20px;
text-align: center;
}
nav {
margin: 20px;
text-align: center;
}
nav a {
margin: 0 15px;
text-decoration: none;
color: #00aaff;
font-weight: bold;
}
section {
padding: 20px;
margin: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
footer {
text-align: center;
padding: 20px;
background-color: #00aaff;
color: white;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1>Ricky's Personal Page</h1>
<p>技术笔记 | 嵌入式 | C# | RF</p>
</header>
<nav>
<a href="#about">关于我</a>
<a href="#notes">技术笔记</a>
<a href="#embedded">嵌入式</a>
<a href="#csharp">C#</a>
<a href="#rf">RF</a>
</nav>
<section id="about">
<h2>关于我</h2>
<p>你好,我是Ricky,一个热爱技术的工程师。专注于嵌入式系统、C#编程和射频技术(RF)。</p>
</section>
<section id="notes">
<h2>技术笔记</h2>
<p>这里是我在工作和学习中积累的一些技术笔记。</p>
<!-- 可以添加更多具体的笔记内容 -->
</section>
<section id="embedded">
<h2>嵌入式</h2>
<p>我对嵌入式系统有着浓厚的兴趣,以下是一些相关的项目和文章。</p>
<!-- 可以添加具体的嵌入式项目和文章 -->
</section>
<section id="csharp">
<h2>C#</h2>
<p>C#是我经常使用的编程语言,这里是一些相关的学习资源和项目。</p>
<!-- 可以添加具体的C#项目和学习资源 -->
</section>
<section id="rf">
<h2>RF</h2>
<p>射频技术(RF)是我研究的另一个领域,以下是一些相关的研究成果和项目。</p>
<!-- 可以添加具体的RF研究成果和项目 -->
</section>
<footer>
<p>© 2024 Ricky. All rights reserved.</p>
</footer>
</body>
</html>