&head(HTMLヘッダ)
基本構造へ戻る
######################################################
# ヘッダ
######################################################
#
#
sub head{
print <<"html";
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=Shift_JIS">
<meta http-equiv="content-style-type" content="text/css">
<title>$titol</title>
</head>
<link rel="stylesheet" type="text/css" href="./css/style.css">
html
}
#
#
######################################################