LoginSignup
0
1

More than 1 year has passed since last update.

ヘッダー作成

Posted at

ヘッダーのテンプレート

ヘッダーのテンプレートです。WEBサイトの作成の際に参考にしてみて下さい。

index.html
<header id="header">
  <h1 class="site-title">
    <a href="#">
      <img src="./img/#1.png" alt="My work">
    </a>
  </h1>
  <nav>
    <ul>
      <li class="top-link">About</li>
      <li class="top-link">Works</li>
      <li class="top-link">News</li>
      <li class="top-link">Contact</li>
      <img src="./img/#2.png" class="top-link" alt="inst">
    </ul>
  </nav>
</header>
index.css
/* 共通要素 */
img{
  max-width: 100%;
  border-style: none;
}

/* header */
#header{
  max-width: 960px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 5%;
}
#header ul{
  display: flex;
  justify-content: space-between;
}
.top-link{
  margin:0 10px;
}

イメージ

Image from Gyazo

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