html5 with basic libraries

Solutions on MaxInterview for html5 with basic libraries by the best coders in the world

showing results for - "html5 with basic libraries"
Michele
19 Oct 2016
1<!doctype html>
2<html lang="en">
3<head>
4
5	<meta charset="utf-8">
6	<meta name="viewport" content="width=device-width, initial-scale=1">
7
8	<!-- Bootstrap CSS -->
9	<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
10
11	<title>Title</title>
12</head>
13<body>
14<h1>Body</h1>
15
16<script src="https://code.jquery.com/jquery-3.6.0.slim.min.js"  crossorigin="anonymous"></script>
17<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
18
19</body>
20</html>