-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (90 loc) · 4.31 KB
/
index.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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 data-include="navbar"></div>
<div data-include="header" style="margin-bottom: -25px; margin-top: 10px;"></div>
<div data-include="slide"></div>
<div class="container">
<div class="row history">
<div class="col-md-12 text-center">
<h1 class="text-center"> Our Story </h1>
<p class="para">
<p>Our proposed system is a large corporate farm chain with several branches in several districts. We
decided to call it "Agrotech Farm". The farm will specialize in animal husbandry. Since it is a large
corporate farm, the amount of data generated in various fields of each operation is massive. That's why,
we will take help from technology and keep records with a database management system.
</p>
</p>
</div>
</div>
<div class="row Story">
<div class="col-md-12 text-center">
<h1 class="text-center"> Who Are We? </h1>
</div>
<div class="col-md-3">
<div class="card" style="width:200px; height:350px">
<img class="card-img-top" src="image/img_avatar1.png" alt="Card image" style=" height:200px">
<div class="card-body">
<h4 class="card-title">John Doe</h4>
<p class="card-text">Some example text.</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card" style="width:200px; height:350px">
<img class="card-img-top" src="image/img_avatar1.png" alt="Card image" style=" height:200px">
<div class="card-body">
<h4 class="card-title">John Doe</h4>
<p class="card-text">Some example text.</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card" style="width:200px; height:350px">
<img class="card-img-top" src="image/img_avatar1.png" alt="Card image" style=" height:200px">
<div class="card-body">
<h4 class="card-title">John Doe</h4>
<p class="card-text">Some example text.</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
</div>
<div class="col-md-3">
<div class="card" style="width:200px; height:350px">
<img class="card-img-top" src="image/img_avatar1.png" alt="Card image" style=" height:200px">
<div class="card-body">
<h4 class="card-title">John Doe</h4>
<p class="card-text">Some example text.</p>
<a href="#" class="btn btn-primary">See Profile</a>
</div>
</div>
</div>
</div>
</div>
<div data-include="footer"></div>
</body>
</html>