Browse Source

Mini bootstrap example page

Vova Tkach 6 years ago
parent
commit
13a2fd26ca
1 changed files with 25 additions and 0 deletions
  1. 25 0
      hosts/localhost/htdocs/bootstrap.html

+ 25 - 0
hosts/localhost/htdocs/bootstrap.html

@@ -0,0 +1,25 @@
+<!doctype html>
+<html lang="en">
+	<head>
+		<!-- Required meta tags -->
+		<meta charset="utf-8">
+		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+
+		<!-- Bootstrap CSS -->
+		<link rel="stylesheet" href="/assets/sys/bootstrap.css">
+
+		<title>Hello, world!</title>
+	</head>
+	<body>
+		<div class="container">
+			<h1>Hello, world!</h1>
+			<a href="https://getbootstrap.com/docs/4.1/getting-started/introduction/" target="_blank">https://getbootstrap.com/docs/4.1/getting-started/introduction/</a>
+		</div>
+		
+		<!-- Optional JavaScript -->
+		<!-- jQuery first, then Popper.js, then Bootstrap JS -->
+		<script src="/assets/sys/jquery.js"></script>
+		<script src="/assets/sys/popper.js"></script>
+		<script src="/assets/sys/bootstrap.js"></script>
+	</body>
+</html>