This is an old site that will be taken down soon. Go to https://learnweb.skilling.us for the current site.

Use a Bootstrap theme

Make an HTML page with this code in it:

  • <!doctype html>
  • <html lang="en">
  •  
  • <head>
  •   <meta charset="utf-8">
  •   <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  •   <title>Doggos</title>
  •   <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
  •   <script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
  •   <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
  •   <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
  • </head>
  •  
  • <body>
  •   <div class="container">
  •     <div class="row">
  •       <div class="col">
  •  
  •         <h1>Doggos</h1>
  •         <div class="jumbotron">
  •           <h1 class="display-4">Hello, doggo fans!</h1>
  •           <p class="lead">DoggLand is the barkiest place in the world. </p>
  •           <a class="btn btn-primary btn-lg" href="javascript:alert('Doggos rock!')" role="button">Learn more</a>
  •         </div>
  •         <p>Doggos are the <em>best!</em></p>
  •  
  •         <div class="card" style="width: 18rem;">
  •           <img src="https://web.skilling.us/sites/default/files/lessons/basic-sites/images/rosie1.jpg"
  •             class="card-img-top" alt="Rosie">
  •           <div class="card-body">
  •             <h5 class="card-title">Rosie</h5>
  •             <p class="card-text">A cute Jack Russel terrier. A little hyper. Now and then.</p>
  •             <a href="javascript:alert('Doggos rock!')" class="btn btn-primary">Go somewhere</a>
  •           </div>
  •         </div>
  •  
  •       </div>
  •     </div>
  •   </div>
  • </body>
  •  
  • </html>

Change it, to use the Superhero theme from Bootswatch.

Submit your URL, as usual.

Where referenced