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

一瞬でサンクスページをつくる(Bootstrap)

Last updated at Posted at 2021-02-15

一瞬でthanks_pageをつくる(Bootstrap)

スクリーンショット 2021-02-15 17.11.42.png

なにかformを送信した後に、遷移先のthanksページのサンプルがあればいいかなと思い、記述。
css を書かずにできます。

headタグの中に忘れないように。bootstrapを読み込みます

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">

bootstrapを読み込みます

jumbotron(ジャンボトロン)では, ヒーローユニットスタイルのコンテンツの表示できます。ジャンボトロンの使い方の例を示します。

オプションで viewport 全体を拡張して, サイトに主要なマーケティングメッセージを表示できます。
下記参考
https://getbootstrap.jp/docs/4.3/components/jumbotron/

source code

<div class="jumbotron text-center">
  <h1 class="display-3">Thank You!</h1>
  <p class="lead"><strong>Please check your email</strong> for further instructions on how to complete your account setup.</p>
  <hr>
  <p>
    Having trouble? <a href="">Contact us</a>
  </p>
  <p class="lead">
    <a class="btn btn-primary btn-sm" href="https://bootstrapcreative.com/" role="button">Continue to homepage</a>
  </p>
</div>
1
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
1
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?