html移动端 个人介绍代码
时间: 2023-09-14 15:12:00 浏览: 93
以下是一个简单的 HTML 移动端个人介绍代码:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>我的个人介绍</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body{
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
h1{
text-align: center;
font-size: 1.5em;
color: #333;
margin-top: 20px;
}
.container{
padding: 20px;
margin: 0 auto;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0,0,0,0.3);
max-width: 600px;
}
p{
font-size: 1.2em;
line-height: 1.5;
color: #666;
margin-bottom: 10px;
}
ul{
list-style-type: none;
margin: 0;
padding: 0;
}
ul li{
font-size: 1.2em;
line-height: 1.5;
color: #666;
margin-bottom: 10px;
}
.contact{
margin-top: 20px;
text-align: center;
}
.contact a{
display: inline-block;
padding: 10px 20px;
background-color: #333;
color: #fff;
border-radius: 5px;
text-decoration: none;
margin-right: 10px;
transition: background-color 0.3s ease-in-out;
}
.contact a:hover{
background-color: #666;
}
</style>
</head>
<body>
<div class="container">
<h1>个人介绍</h1>
<p>大家好,我是一名前端工程师,热爱编程和设计。</p>
<p>我会以下技术:</p>
<ul>
<li>HTML / CSS</li>
<li>JavaScript</li>
<li>jQuery</li>
<li>React</li>
<li>Vue</li>
</ul>
<div class="contact">
<a href="#">联系我</a>
<a href="#">查看我的作品</a>
</div>
</div>
</body>
</html>
```
阅读全文