1. 程式人生 > 其它 >每日總結(22/3/22)

每日總結(22/3/22)

<!DOCTYPE html>
<html lang="en" xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<title>實驗1-鞏文彬</title>
<style type="text/css">
#header{
background-color: lightpink;
color: white;
text-align: center;
padding:20px;
}
#section {
float:left;
padding:10px;
}
#footer {
position: absolute;
bottom: 0;
height: 100px;
width:100%;
background-color:white;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
</head>
<body>
<div id="header">
<h1>關於我</h1>
</div>
<div id="section">
<p>
<h3>
普普通通的一名大二學生,平時喜歡玩FPS遊戲,平時喜歡聽音樂,看電影。
</h3>
</p>
</div>
<div id="footer">
<a href="boke.html">返回首頁</a>
</div>
</body>
</html>