お問い合わせフォームを作成したので、メモ書きとして残しておこうと思います。
ソースコード
実装は以下のようなコードで行いました。
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;
}