-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex2.html
67 lines (43 loc) · 1.6 KB
/
index2.html
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<title>My Website</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css" type="text/css">
<!-- Java Script -->
<script src="jscript/jquery.min.js"></script>
<script src="jscript/popper.min.js"></script>
<script src="jscript/bootstrap.min.js"></script>
<script>
$(function(){
var includes = $('[data-include]');
jQuery.each(includes, function(){
var file = $(this).data('include') + '.html';
$(this).load(file);
});
});
</script>
</head>
<body>
<div class="container-fluid">
<div class="row header" style="align-items: center; padding-left: 350px; padding-top: 30px; padding-bottom: 0px; margin-bottom: -10px;">
<div>
<img class="logo" src="image/logo.png">
</div>
<div class="col-md-6 name" style="font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif">
<h1>Aggrotech Farming</h1>
</div>
</div>
</div>>
<div data-include="nav2"></div>
<div data-include="animals"></div>
<br><br>
<div data-include="prod-inventory"></div>
<br><br>
<div id="Monit" data-include="monitoring"></div>
<div data-include="footer"></div>
</body>