16 lines
482 B
HTML
16 lines
482 B
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<title>My Web Page</title>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="assets/bootstrap-5.3.8-dist/css/bootstrap.min.css">
|
|
</head>
|
|
<body class="p-4">
|
|
<h1 class="text-primary">Hello Bootstrap</h1>
|
|
|
|
<button class="btn btn-primary">Primary Button</button>
|
|
<button class="btn btn-secondary">Secondary Button</button>
|
|
|
|
<script src="assets/bootstrap-5.3.8-dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |