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 5 years have passed since last update.

お問い合わせフォームCSS

Posted at

お問い合わせフォームを作成したので、メモ書きとして残しておこうと思います。

今回は、以下のようなフォームを作成しました。
screencapture-oosodaoo-github-io-onoda-rina-help-html-2019-08-17-07_07_23.png

ソースコード

実装は以下のようなコードで行いました。

html

<div class="help_wrap">
 <div class="confirm_help">
   <div class="help_font">
     <h2>CONTACT</h2>
     <h3>お仕事のご依頼、その他お問い合わせを受け付けております<br>お気軽にお問い合わせください</h3>             
   </div>
   <div class="helpbox">
      <a href="help.html" class="help" >お問い合わせフォームへ</a>
   </div>
 </div>
</div>

css

.help_wrap{
    position: absolute;
    width: 100%;
    height: 349px;
    left: 0px;
    top: 3337px;
    text-align: center;
    background: #6AC5CE;
}

.confirm_help{
    padding-top:60px;
}
.help_font{
    color:#ffffff;
    font-family: Roboto;
    font-style: normal;
    line-height: 21px;
}

.help_font h2{
    font-weight: 900;
    font-size: 30px;
    line-height: 35px;
    
    color:#ffffff;
}

.help_font h3{
    font-weight: normal;
    font-size: 18px;
    line-height: 35px; 
    
    color:#ffffff;
}

.help{
    font-family: Roboto;
    font-style: normal;
    font-weight: 900;
    font-size: 18px;
    line-height: 21px;
    text-decoration: none;
    margin: 5px;
    padding: 10px 100px;
    background: #FFFFFF;
    
    color: #6AC5CE;

}

.help:hover{
    background: #FF8989;
    color: #ffffff;
}

.fotter{
    position: absolute;
    height: 301px;
    top: 3685px;
    width:100%;
    padding-top: 39x;
    padding-bottom: 39px;
    font-family: Roboto;
    font-style: normal;
    color: #135161;
    display: inline-block;
}


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?