Skip to content

Instantly share code, notes, and snippets.

@ktzanev
Last active March 17, 2017 17:22
Show Gist options
  • Save ktzanev/8b179b950e1adfdc40720e05f10a541b to your computer and use it in GitHub Desktop.
Save ktzanev/8b179b950e1adfdc40720e05f10a541b to your computer and use it in GitHub Desktop.
Exemple de typographie dans Bootstrap (GistRun)
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Exemple Bootstrap</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<h1>Exemple Bootstrap</h1>
<div class="text-center text-uppercase">
Voilà un document avec Bootstrap <i class="glyphicon glyphicon-leaf"></i>
</div>
<ul class="list-inline">
<li class="well well-sm">1</li>
<li class="well">2</li>
<li class="well well-lg">3</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment