Bootstrap - kohnlehome.de

Webentwicklung
http://kohnlehome.de/html/bootstrap.pdf
Bootstrap
Verzeichnisstruktur
|||
|
|
||
|
|-
index.html
css/
|- bootstrap.css
|- bootstrap-theme.css
fonts/
|- ...
js/
|- bootstrap.js
|- jquery.js
index.html
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap-Beispiel</title>
<link href="css/bootstrap.css" rel="stylesheet">
</head>
<body>
<h1>Bootstrap-Beispiel</h1>
<!-- I N H A L T -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
</body>
</html>
Grid (12 Spalten)
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="col-md-8">
</div>
<div class="row">
<div class="col-md-4">
<div class="col-md-2">
<div class="col-md-6">
</div>
</div>
... </div>
... </div>
... </div>
... </div>
... </div>
Tabellen
<table class="table table-striped table-condensed">
...
Franz Kohnle
Seite 1 von 1
14. Oktober 2016