0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ヘッダーメニューが完成した後の中身の作り方

Last updated at Posted at 2020-09-30

本格的な中身の作り方を忘れてしまった人のために、中身を作る型を紹介していきます

html
<body></body>の中にメインコンテンツのコードを記述していきます

<div class="main">
 <div class="copy-container">
  <h1>文字を入れる</h1>
  <h2>文字を入れる</h2>
 </div>
  <div class="contents"></div>
  <div class="contact-form"></div>
</div>

続いてcssを見ていきましょう

css
.main {
}

.copy-container {
}

.contents {
}

.contact-form {
}

以上になります。

0
0
0

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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?