34 lines
1001 B
HTML
34 lines
1001 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
|
<meta name="description" content="">
|
||
|
|
<meta name="author" content="">
|
||
|
|
<title>My page</title>
|
||
|
|
<!-- Bootstrap core CSS -->
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.min.js"></script>
|
||
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet">
|
||
|
|
|
||
|
|
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
|
||
|
|
<style>
|
||
|
|
html, body
|
||
|
|
{
|
||
|
|
width:100%;
|
||
|
|
height:100%;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<!-- Page Content -->
|
||
|
|
<div class="container">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-lg-12 text-center">
|
||
|
|
<h1 class="mt-5">Bootstrap 5 start page</h1>
|
||
|
|
<p class="lead">Start by dragging components to page or double click to edit text</p>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|