Skip to content

Instantly share code, notes, and snippets.

@dvmn-tasks
Created February 21, 2020 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dvmn-tasks/b741312123a74c30b8ab6ecfd87bffee to your computer and use it in GitHub Desktop.
Save dvmn-tasks/b741312123a74c30b8ab6ecfd87bffee to your computer and use it in GitHub Desktop.
index.html для статьи "Как перевести сайт в оффлайн"
<html lang="ru">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta http-equiv="charset" content="utf8">
<meta http-equiv="content-type" content="text/html;">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>Hello, world!</title>
</head>
<body>
<div class="container mt-3">
<div class="row">
<div class="col-4">
<div class="card">
<img src="https://dvmn.org/filer/canonical/1569333143/329/" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">New York Yankees</h5>
<p class="card-text">Красная кепка NY Yankees за 20$ снова в продаже!</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<img src="https://dvmn.org/filer/canonical/1569333143/330/" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Los Angeles Dodgers</h5>
<p class="card-text">Чёрная кепка LA Dodgers за 20$ снова в продаже!</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
<div class="col-4">
<div class="card">
<img src="https://dvmn.org/filer/canonical/1569333144/331/" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">Los Angeles Kings</h5>
<p class="card-text">Чёрная кепка LA Kings с коричневым козырьком за 20$</p>
<p class="card-text"><small class="text-muted">Last updated 3 mins ago</small></p>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment