23 lines
757 B
HTML
23 lines
757 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">
|
|
<link rel="stylesheet" href="assets/css/custom.css">
|
|
</head>
|
|
<body class="p-4">
|
|
<h1 class="text-primary">Hello From Second Page</h1>
|
|
<a href="index.html">Go to Main Page</a>
|
|
<a href="secondSite.html">Go to Second Page</a>
|
|
<br />
|
|
|
|
<button class="btn btn-primary" onclick="aFunctionCall()">Primary Button</button>
|
|
<button class="btn btn-secondary" onclick="exampleLog()">Secondary Button</button>
|
|
|
|
|
|
|
|
<script src="assets/bootstrap-5.3.8-dist/js/bootstrap.bundle.min.js"></script>
|
|
<script src="assets/src/example.js"></script>
|
|
</body>
|
|
</html> |