-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
115 lines (87 loc) · 3.7 KB
/
index.php
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
106
107
108
109
110
111
112
113
114
115
<?php
$page = "index";
$page_title = "Aryan Properties";
?>
<?php require_once("_header.php"); ?>
<!-- Show Case all projects of Aryan Properties -->
<div class="container">
<!-- Carousel -->
<div id="myCarousel" class="carousel">
<!-- Carousel items -->
<div class="carousel-inner">
<div class="item">
<img src="images/hf/hf_eye.jpg" alt="Heritage Farm" />
<div class="carousel-caption">
<h4>Heritage Farm</h4>
</div>
</div>
<div class="item">
<img src="images/hf/hv_eye.jpg" alt="Heritage Villa" />
<div class="carousel-caption">
<h4>Heritage Villa</h4>
</div>
</div>
<div class="active item">
<img src="images/sbn/project_01.png" alt="Shalibhadra Nagar Main Gate" />
<div class="carousel-caption">
<h4>Shalibhadra Nagar Main Gate</h4>
</div>
</div>
<div class="item">
<img src="images/sbn/project_02.png" alt="Shalibhadra Nagar" />
<div class="carousel-caption">
<h4>Shalibhadra Nagar</h4>
</div>
</div>
</div>
<!-- Carousel nav -->
<a class="carousel-control left" href="#myCarousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#myCarousel" data-slide="next">›</a>
</div><!-- # Carousel -->
</div>
<hr>
<div class="container projects_list">
<h3>Projects</h3>
<div class="row">
<div class="span4 project">
<a href="hf.php">
<img class="img-polaroid" src="images/hf/hf_logo1.png" alt="Heritage Farm" />
</a>
</div>
<div class="span4 project">
<a href="sbn.php">
<img class="img-polaroid" src="images/sbn/logo.png" alt="Shalibhadra Nagar" />
</a>
</div>
</div>
</div>
<hr>
<div class="container">
<h3 style="margin-top: 20px; margin-bottom: 10px;">Our Vision</h3>
<p>
As a group, we are committed to strategic business development in infrastructure, as the key to nation building in the 21st century. We aim to achieve perfection in everything we undertake with a commitment to excel. It is the determination to transform every challenge into opportunity; to seize every opportunity to ensure growth and to grow with a human face.
</p>
<h3 style="margin-top: 20px; margin-bottom: 10px;">Our Mission</h3>
<p>
Mission - Imagine, Innovate, Implement. Our core ideology of providing perfect sanctuaries has been the driving force of our mission to acquire a distinguished position in the world. Our differentiation is based on our ability to innovate, based on a customer-centric approach and feedback. We ensure that our clients get truly international quality and amenities in a natural eco-friendly environment. We wish to be known by anyone in the world, as the ideal creator of unprecedented superior lifestyles.
</p>
<h3 style="margin-top: 20px; margin-bottom: 10px;">Our Values</h3>
<ul>
<li>
Happiness is the harmony of body, mind and spirit. Happiness is man's harmonious relation with his environment. The happiest is he who finds inner peace and who promotes the happiness of the others.
</li>
<li>
Hope enables us to endure the hardships of life with courage and contentment. It emboldens us to encounter difficulties and overcome obstacles. Hope sustains and stimulates, comforts and cheers, encourages and inspires us.
</li>
<li>
Character is the foundation stone upon which one must build to win respect.
</li>
<li>
Fundamental requirement for success is humility.
</li>
<li>
The best leaders lead by demonstrating how it is done.
</li>
</ul>
</div>
<?php require_once("_footer.php"); ?>