HTML+CSS做一个个人简历

代码:

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset=utf-8" />
<title>简历</title>
<style>
*{ 
margin: 0; padding: 0; 
}
body{
width:%100;
height:%100;
text-align:center;
background-color:#272727;
}

.class1{
width:300px;
height:1000px;
background-color:#666666;
float:left;
color :white;
}

.class2{
height:950px;
background-color:#669999;
margin-left: 220px;
text-align:left;
color:black;
}

.class3{
height:50px;
background-color:#333333;
color:white;
}


.class4{
margin-top:50px;
}
ul{
margin:0; padding:0;
    color:white;
	padding-left: 100px;
	text-align:left;
}
hr{
height: 2px;
 background-color: black; 
 border: 0;
}
p{
	font-size:20px;
}
table, td, th
{
    border:1px solid green;
}

</style>
</head>
<body>

<div class="class1">
   <div class="class4">
    <img src="4.png">
   </div>
   <img src="5.png"align="left">
   <h1>个人信息</h1>
   
   <br/>
	<ul>
	<li>姓名:xxxxxxx</li>
	<br/>
	<li>出生年月:xxxxxxx</li>
	<br/>
	<li>籍贯:湖北武汉</li>
	<br/>
	<li>学历:本科</li>
	<br/>
	<li>民族:汉</li>
	</ul>
	<br/>
   <img src="6.png"align="left">
	<h1>联系方式</h1>
	<ul>
	<li>qq:xxxxxxxxxx</li>
	<br/>
	<li>电话:xxxxxxxxxxx</li>
	<br/>
	<li>微信:xxxxxxxxxxxx</li>
	<br/>
	<li>地址:xxxxx</li>
	</ul>
	<br/>
	<img src="10.png"align="left">
	<h1>兴趣爱好</h1>
	<div class="pic">
	<ul>
	<li><img src="7.png"/></li>
	<li><img src="8.png"/></li>
	<li><img src="9.png"/></li>
	</ul>
	</div>
</div>
<div class="class3">
	<h1>个人简历</h1>
</div>
<div class="class2">
<br/>
<br/>
<img src="11.png"align="left">
<h1>自我评价</h1>
<br/>
<hr/>
<p>
	本人性格开朗、诚实正直、做事认真踏实、工作兢兢业业、<br/>有较强的组织能力、写作能力和团队协作精神,能迅速的<br/>适应各种环境并融合其中。自参加工作以来,所受到的教<br/>育及锻炼使我能够熟练的管理工作,能独立处理工作中出<br/>现的问题。
</p>
<img src="12.png"align="left">
<h1>教育经历</h1>
<br/>
<hr/>
<p>
	毕业学校:湖北大学 &ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;        时间:在读
</p>
<br/>
<br/>
<br/>
<br/>
<img src="13.png"align="left">
<h1>工作经验</h1>
<br/>
<hr/>
<p>
	工作时间:xxxxx&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;        工作单位:xxxxxx<br/>
	工作时间:xxxxx&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;&ensp;        工作单位:xxxxxx
</p>
</div>
</body>
</html>

 

效果图:

好的,下面是一个简单的HTMLCSS代码示例,可以用来创建一个好看的个人简历HTML代码: ``` <!DOCTYPE html> <html> <head> <title>个人简历</title> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="stylesheet" href="style.css"> </head> <body> <div class="container"> <header> <h1>姓名</h1> <p>电话:1234567890 | 邮箱:example@gmail.com</p> </header> <section> <h2>教育经历</h2> <div class="item"> <h3>学位名称</h3> <p>学校名称 | 时间</p> </div> </section> <section> <h2>工作经历</h2> <div class="item"> <h3>职位名称</h3> <p>公司名称 | 时间</p> <ul> <li>工作职责1</li> <li>工作职责2</li> <li>工作职责3</li> </ul> </div> </section> <section> <h2>技能</h2> <ul class="skills"> <li>技能1</li> <li>技能2</li> <li>技能3</li> </ul> </section> </div> </body> </html> ``` CSS代码: ``` body { font-family: Arial, sans-serif; color: #333; background-color: #f2f2f2; } .container { max-width: 800px; margin: 0 auto; padding: 50px; background-color: #fff; box-shadow: 0 5px 10px rgba(0,0,0,0.1); border-radius: 5px; } header { text-align: center; margin-bottom: 50px; } h1 { font-size: 36px; margin: 0; } p { font-size: 18px; margin: 10px 0 0; } section { margin-bottom: 50px; } h2 { font-size: 24px; margin-bottom: 20px; } .item { margin-bottom: 20px; } h3 { font-size: 20px; margin: 0 0 5px; } ul { margin: 0; padding: 0; } li { margin-bottom: 10px; list-style-type: disc; } .skills { display: flex; flex-wrap: wrap; } .skills li { flex-basis: calc(33.33% - 10px); margin-right: 10px; } ``` 你可以根据自己的需要进行修改,例如更改字体、颜色和布局等。希望这个示例对你有帮助!
评论 10
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值