-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (38 loc) · 1.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="styles/main.min.css">
<link rel="stylesheet" href="styles/style.css">
<title>Jade Hochschule - Holzbaumodelle</title>
</head>
<body class="bg-dark">
<div class="container">
<h1 class="text-center text-light">Holzbaumodelle der Jade Hochschule in Oldenburg</h1>
<p class="text-light">Nachfolgend finden Sie 3D Modelle der Holzbauausstellung der Jade Hochschule in Oldenburg.
Die Sammlung
beinhaltet 26 Modelle und wird in den kommenden Semestern weiter vervollständigt. Hier finden Sie eine
Veröffentlichung zu Anlass und Entstehung dieser digitalen Holzbausammlung.</p>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="Suche" aria-label="Suche"
aria-describedby="button-addon2" id="searchTextInput">
<button class="btn bg-primary fw-bold text-light" type="button" id="searchButton">Suchen</button>
</div>
<div class="d-flex align-items-center mb-2">
<h5 id="resultMessage" class="text-light m-0 p-0 me-2" hidden>Moin</h5>
<button id="resetButton" type="button" class="btn btn-light py-0 m-0" hidden>Reset</button>
</div>
<div id="modelRow" class="customGrid">
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0-beta1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2"
crossorigin="anonymous"></script>
<script src="js/helper.js"></script>
<script src="js/db.js"></script>
<script src="js/generateModelCards.js"></script>
</body>
</html>