Appli Base


見出しの太字をなくす font-weight


font-weight: normal;

使い方

<head>タグ内に書く方法


<style>
h1{
font-weight: normal;
}
</style>

タグに直接書く方法

<h1 style="font-weight: normal;">見出し1</h1>
<h2 style="font-weight: normal;">見出し2</h2>
<h3 style="font-weight: normal;">見出し3</h3>
<h4 style="font-weight: normal;">見出し4</h4>
<h5 style="font-weight: normal;">見出し5</h5>
<h6 style="font-weight: normal;">見出し6</h6>

スタイルシートに書く方法


h1{
font-weight: normal;
}