LoginSignup
1
1

More than 5 years have passed since last update.

html 見出しの大きさ

Last updated at Posted at 2016-04-26
qiita.rb
見出しの大きさは、<h1></h1> >>> <h7></h7> である。(デフォルトの場合。cssの設定を変えればh2h1よりも大きくすることもできる!)
<h1>hello,world1!</h1>
<h2>hello,world2!</h2>
<h3>hello,world3!</h3>
<h4>hello,world4!</h4>
<h5>hello,world5!</h5>
<h6>hello,world6!</h6>

(result)

hello,world1!


hello,world2!


hello,world3!


hello,world4!


hello,world5!

hello,world6!
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1