<center>中央揃えされるテキスト</center>
CSSのtext-align
プロパティを使用する方法:
<div style="text-align: center;">中央揃えされるテキスト</div>
CSSのmargin
プロパティを使用する方法:
<div style="margin-left: auto; margin-right: auto; text-align: center;">中央揃えされるテキスト</div>
CSSのFlexboxを使用する方法:
<div style="display: flex; justify-content: center;">中央揃えされるテキスト</div>
CSSのGridを使用する方法:
<div style="display: grid; place-items: center;">中央揃えされるテキスト</div>
これらの方法のいずれかを使用すると、テキストをHTML内で中央揃えすることができます。選択した方法に応じて、該当するコードを使用してください。