-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNewFile.html
More file actions
31 lines (26 loc) · 962 Bytes
/
NewFile.html
File metadata and controls
31 lines (26 loc) · 962 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My page</title>
<link href="css/custom.css" rel="stylesheet" type="text/css" />
<link href="css/footer.css" rel="stylesheet" type="text/css" />
<link href="css/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="css/font-awesome.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="image-container">
<img class="scale" data-scale="best-fit-down" data-align="center" src="https://static.chotot.com.vn/wm_images/46/4696483067.jpg">
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/image-scale.js"></script>
<script type="text/javascript" src="js/dropdown.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript">
$(function() {
$("img.scale").imageScale();
});
</script>
</body>
</html>