1カラム
index.html
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>1カラム サンプル</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<header>ヘッダー</header>
<div>
<p>メイン</p>
<p>本文 本文 本文</p>
</div>
<footer>フッター</footer>
</body>
</html>
style.css
body{
font-size : 17px;
font-family : "Meiryo UI";
}
header{
height:100px;
padding:10px;
background:#ffcccc;
}
div{
padding:10px;
border:1px solid #ccc;
}
footer{
height:100px;
padding:10px;
background:#ccc;
}
2025/12/10




