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.

サイト集の作成【プログラミング日記~ポートフォリオ⑥~】#7

Posted at

#サイト集を作ろう‼
今回はスライドの2枚目に当たるサイト集のページを作ります‼スライド3.JPG

index.html

<div class="container second">
        <div class="works">
          <h2 id="works" class="section-title">WORKS</h2>
          <div class="work">
            <a href="https://www.google.com/?hl=ja"><img src="image/work.png" height="200px" width="200px">
            <h3>○○のサイト</h3>
            <p>説明文</p></a>
          </div>
          <div class="work">
            <a href="https://www.yahoo.co.jp/"><img src="image/work.png" height="200px" width="200px">
            <h3>○○のサイト</h3>
            <p>説明文</p></a>
          </div>
          <div class="work">
            <a href="https://www.google.com/?hl=ja"><img src="image/work.png" height="200px" width="200px">
            <h3>○○のサイト</h3>
            <p>説明文</p></a>
          </div>
          <div class="work">
            <a href="https://www.yahoo.co.jp/"><img src="image/work.png" height="200px" width="200px">
            <h3>○○のサイト</h3>
            <p>説明文</p></a>
          </div>
        </div>
      </div>

style.css

* サイト集 */
.second{
  background-color: rgb(251, 180, 47)
}
.work{
  float: left;
  width: 25%;
  text-align: center;
  padding-top: 40px;
}
.work img{
  border: 2px solid black;
}
.work p{
  font-size: 16px;
  padding: 0 30px;
}

#完成したモノがこちら!
スクリーンショット (11).png
シンプルだし孫悟空の左胸4つ並んでるみたいになっちゃったけど今後アニメーションとかつけれたらなぁって思ってます!早く自分のさいといれてぇ~

#おわりに

シンプルなサイトだからなのか慣れてきたからなのか一瞬で完成しちゃいました‼完成したモノ見た感じ完全に前者ですね:upside_down:
シンプルでもまず完成させることが大事‼って心に言い聞かせて頑張ります、、、
では、それでは~

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?