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

每日總結(22/3/18)

<!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">
名字:<input type="text"><br>
聯絡方式:<input type="text"><br>
意見:<input type="text"><br>
</div>
<div id="footer">
<a href="boke.html">返回首頁</a>
</div>
</body>
</html>