-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhosted_libraries.html
More file actions
44 lines (33 loc) · 1.33 KB
/
hosted_libraries.html
File metadata and controls
44 lines (33 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hosted Libraries</title>
<!-- https://developers.google.com/speed/libraries/#jquery -->
<!-- jQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<!-- jQuery Mobile -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquerymobile/1.4.5/jquery.mobile.min.js"></script>
<!-- jQuery UI -->
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!-- Web Font Loader -->
<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>
<!-- https://cdnjs.com/libraries -->
<!-- jQuery -->
<!-- jQuery -->
<!-- jQuery -->
<!-- jQuery -->
<!-- jQuery -->
<!-- jQuery -->
<!-- jQuery -->
</head>
<body>
This document is an example of various hosted libraries.
<br>
It cause errors on loading because in this example there is multiples versions of the same libraries.
</body>
</html>