-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (44 loc) · 1.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>我的个人主页</title>
<link rel="icon" sizes="any" mask="" href="https://www.baidu.com/favicon.ico">
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: #fff;
padding: 10px;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.profile-image {
max-width: 200px;
border-radius: 50%;
margin: 20px;
}
</style>
</head>
<body>
<header>
<h1>欢迎来到我的个人主页</h1>
</header>
<div class="container">
<img class="profile-image" src="your-image.jpg" alt="Your Name">
<h2>关于我</h2>
<p>我是一个Web开发者,热爱编程和设计。欢迎来访我的个人主页。</p>
<h2>联系信息</h2>
<p>Email: [email protected]</p>
<p>社交媒体: <a href="https://twitter.com/yourusername">Twitter</a></p>
</div>
</body>
</html>