Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update index.html
  • Loading branch information
drm10001 committed Apr 6, 2020
1 parent a2bcb80 commit 524d9b5
Showing 1 changed file with 50 additions and 7 deletions.
57 changes: 50 additions & 7 deletions index.html
Expand Up @@ -2,19 +2,62 @@
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="responsive.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Responsive Design</title>
</head>
<body>
<h1>A Site That Looks Great On Any Screen</h1>
<p>We'll see what we can do</p>
<span class="card">
<h2>This is card one</h2>
</span>
<span class="card">
<h2>This is card two</h2>
</span>
<div class="container">
<div class="row">
<div class="card col-md-6">
<h2>This is card one</h2>
</div>
<div class="card col-md-3">
<h2>This is card two</h2>
</div>
<div class="card col-md-3">
<h2>This is card three</h2>
</div>
</div>
</div>

<div class="container-md">
<table class="table table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>

<script src="stuff.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
</body>
</html>

0 comments on commit 524d9b5

Please sign in to comment.