| 123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css">
- <link rel="stylesheet" href="normalize.css">
- <link rel="stylesheet" href="style.css">
- <title>Document</title>
- </head>
- <body class="body-- nodebug">
- <h1>Call to action (small container)</h1>
- <div class="show-case">
- <div class="cta">
- <i class="cta__icon fa fa-exclamation-circle fa-2x"></i>
- <h1 class="cta__title">The title</h1>
- <p class="cta__text">The short text to convince you !</p>
- <button class="cta__button">The button !</button>
- </div>
- </div>
- <h1>Call to action</h1>
- <div class="show-case show-case--big">
- <div class="cta">
- <i class="cta__icon fa fa-exclamation-circle fa-3x"></i>
- <h1 class="cta__title">The title</h1>
- <p class="cta__text">The short text to convince you !</p>
- <button class="cta__button">The button !</button>
- </div>
- </div>
- </body>
- </html>
|