-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.php
102 lines (86 loc) · 3.96 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
<?php include 'header.php' ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta http-equiv="X-UA-Comptible" content="ie=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/wt.css">
<title>
Home
</title>
</head>
<body>
<!-- image slider-->
<div id="carouselExampleCaptions" class="carousel slide slider-horizontal slidera " style="padding-top: 70px;" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#carouselExampleCaptions" data-slide-to="0" class="active"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="1"></li>
<li data-target="#carouselExampleCaptions" data-slide-to="2"></li>
</ol>
<div class="carousel-inner ">
<div class="carousel-item active ">
<img src="image/a.jpg" style="max-height: 550px;" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block">
</div>
</div>
<div class="carousel-item">
<img src="image/img4.jpg" style="max-height: 550px;" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block">
</div>
</div>
<div class="carousel-item">
<img src="image/img6.jpg" style="max-height: 550px;" class="d-block w-100" alt="...">
<div class="carousel-caption d-md-block">
</div>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleCaptions" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleCaptions" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
<br>
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<center><h2 style="padding-top: 2%; color: #451f55;">Welcome To VADS</h2></center>
<hr width="50%" style="border:2px solid grey;">
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="card-deck" style="max-width: 90%; padding-left: 20%; border:none;">
<div class="card " style="border:none;" >
<div class="card1"><b>
FIRM<br></b><br>
<p>We are a full service Civil Engineering, Land Planning and
<br> Landscape Architecture Consulting Company.<br> Our focus is on innovative, value-added <br>design/engineering though a client-driven approach. <br> Our primary goal is to exceed our client's expectation...</p>
</div>
</div>
<div class="card " style="border:none;">
<b> PORTFOLIO<br></b><br>
<p>Our projects reflect the wide variety of design<br>and project management experience that our <br> staff brings to the development community. <br>Our site engineering, professional design and <br>commitment to sustainability is unique...</p>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<h2 style="padding-left: 10%;">WE WILL HELP YOU MAKE YOUR PROJECT A REALITY!</h2>
<div class="row">
<img src="image/c2.jpg" style="padding-left: 10%; max-width: 40%; max-height: 40%;" ><p style="padding-left: 10px;">Our goal at VADS is to provide creative cost effective<br> engineered solutions designed to exceed your expectations for professional service.<br>
We design solutions tailored specifically to the needs of <br>your specific site in order to ensure you achieve<br> a successful project development.
Check out our custom solutions and services.</p>
</div></div>
<br>
</body>
</html>
<?php include 'footer.php';?>