html文件 ...
html文件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tzyHTML</title>
<link rel="stylesheet" href="tzy.css" type="text/css">
</head>
<body>
<div class="div1">
<div>
<h1>---->>>求職申請表<<<----
</h1>
</div>
</div>
<div class="div2">
<iframe src="tzyy.html" width="98%" height="500px"></iframe>
</div>
<div class="div3">
<fieldset style="text-align: center;border-style: double;border-width: 6px;border-radius: 50px;border-color: blueviolet;font-family: '楷體';">
<legend><h3>不想讓我們公開的信息</h3></legend>
<input type="checkbox" checked="true"><b>姓名</b>
<input type="checkbox" checked="true"><b>密碼</b>
<input type="checkbox" checked="true"><b>籍貫</b>
<input type="checkbox" checked="true"><b>性別</b>
<input type="checkbox" checked="true"><b>頭像</b>
<input type="checkbox" checked="true"><b>願意工作地址</b>
<input type="checkbox" checked="true"><b>留言</b>
</fieldset>
</div>
</body>css文件
*{
margin: 0px;
padding: 0px;
}
body{
width: 1000px;
}
.div1{
width: 70%;
height: 50px;
margin: 0px auto;
/*疊層設置屬性*/
}
.div1 div h1{
/*類選擇器加元素選擇器*/
text-align: center;
}
.div2{
width: 70%;
height: auto;
margin: 0px auto;
}
.div3{
width: 70%;
height: 52px;
margin: 0px auto;
}
</html>