用HTML设计一个自我介绍的网页 感谢
发布网友
发布时间:2022-04-26 20:49
我来回答
共1个回答
热心网友
时间:2023-10-31 15:01
<style>
.content>.name{font-size:16px; color:blue}
.home{font-size:18px; color:red}
#address{font-size:20px; color:gray}
.btn>a,.btn>input{color:green;display:block;width:120px;height:60px}
.btn>a:hover,.btn>input:hover{color:yellow;}
</style>
<DIV class="content" style="background:url('img.jpg')">
<div class="name">
我叫XXX
</div>
<div class="home">
我的家乡XXX
</div>
<div id="address">
我在xxxx
</div>
<div class="btn">
<a>确定</a>
<input type="button" value="确定"/>
</div>
</DIV>