-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOldIndex.html
189 lines (164 loc) · 6.14 KB
/
OldIndex.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
<!DOCTYPE html>
<html>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-200337808-1">
</script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-200337808-1');
</script>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css" type = "text/css">
<title>DATSTAT Consulting</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link data-react-helmet="true" rel="stylesheet" href="https://fonts.googleapis.com/css?family=Raleway">
<style>
.footer {
position: fixed;
}
* {
box-sizing: border-box;
}
/* Create three equal columns that float next to each other */
.column3 {
float: left;
width: 33.3333333333%;
height: 20%;
padding:10px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.twocols {
float: left;
width: 50%;
height: 20%;
padding:10px;
}
body {
font-family: "Raleway", sans-serif;
background-color:#242120;
color:white;
margin: 0;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
/* Parallax image */
.bgimg-1, .bgimg-2, .bgimg-3 {
position: relative;
opacity: 0.65;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.bgimg-1 {
background-image: url("photo1.jpg");
min-height: 50%;
}
.bgimg-2 {
background-image: url("photo2.jpg");
min-height: 50%;
}
.bgimg-3 {
background-image: url("photo3.jpg");
min-height: 50%;
}
</style>
</head>
<body>
<div class="sidebar">
<a class="active" href="index.html">Home</a>
<a href="work.html">Our Work</a>
<a href="team.html">Team</a>
<a href="services.html">Services</a>
<a href="training.html">Training</a>
</div>
<article class="content">
<div style="background-color:#104497">
<img src="DATSTAT_logo.png" alt="DATSTAT Consulting" width="25%" class="center">
</div>
<div class="bgimg-1">
<div class="caption">
<span class="border" style="background-color:#202324;color:white;text-align:center;padding:10px;opacity:0.75;font-size:30px;">Why take a chance?</span>
</div>
</div>
<br/>
<section class="border" style="align:center;text-align:center;">
<span style="background-color:#104497;color:white;font-size:30px;padding:10px;font-family:Raleway;">Let the data speak for itself!</span>
<p style="text-align:center;">For too long, managers and decision makers have relied on rules of thumb, personal experience, and intuition when facing challenges. These methods may serve some, but hurt others. No rule serves all situations. Thanks to advances in technology and science, we may now cut through the fog with light borne from data. Why take a chance when you can see what the real world says? Will you still take chances with gut feelings and limited experience? Or will you let the data speak for itself?</p>
</section>
<br/>
<div style = "text-align:center;align:center;float:center;margin:0 auto;display:block;" class="dropdown">
<button onclick="myFunction()" class="dropbtn" style="background-color:#104497;color:white;font-size:25px;padding:10px;text-decoration:underline;font-family:Raleway;">Contact Us Today!</button>
<div id="myDropdown" class="dropdown-content">
<a href="https://www.facebook.com/datstatconsulting/">Facebook</a>
<a href="mailto: [email protected]">Email</a>
</div>
</div>
<script>
/* When the user clicks on the button,
toggle between hiding and showing the dropdown content */
function myFunction() {
document.getElementById("myDropdown").classList.toggle("show");
}
// Close the dropdown if the user clicks outside of it
window.onclick = function(event) {
if (!event.target.matches('.dropbtn')) {
var dropdowns = document.getElementsByClassName("dropdown-content");
var i;
for (i = 0; i < dropdowns.length; i++) {
var openDropdown = dropdowns[i];
if (openDropdown.classList.contains('show')) {
openDropdown.classList.remove('show');
}
}
}
}
</script>
<br/>
<div class="bgimg-2">
<div class="caption">
<span class="border" style="background-color:#202324;color:white;text-align:center;padding:10px;opacity:0.75;font-size:30px;">We will get in touch with you soon.</span>
</div>
</div>
<h2 style = "color:white;text-align:center;padding:10px">Our services</h2>
<section class="row">
<div class="column3" style="background-color:#a78852;">
<h2 style="color:white">Statistical Inference and Estimation</h2>
<p style="color:white">We perform hypothesis testing, A/B testing, Multivariate Analysis, Time Series Analysis, and more.</p>
</div>
<div class="column3" style="background-color:#5271a7;">
<h2 style="color:white">Economic and Financial Analysis</h2>
<p style="color:white">We perform impact evaluation, profit optimization, financial modeling, labor analysis, and more.</p>
</div>
<div class="column3" style="background-color:#a75d52;">
<h2 style="color:white">Logistics and Transportation</h2>
<p style="color:white">We perform transportation modeling, supply chain optimization, routing, and more.</p>
</div>
</section>
<br/>
<p style="text-align:center">Find more in our full list of <a href="services.html" style="color:white">services</a>.</p>
<div class="bgimg-3">
<div class="caption">
<span class="border" style="background-color:#202324;color:white;text-align:center;padding:10px;opacity:0.75;font-size:30px;">Let the data speak for itself!</span>
</div>
</div>
<p style="text-align:center;">We at DATSTAT wish to provide timely and relevant analysis to individuals and organizations who need them. Our team of excellent analysts have the best tools for any job they face. We can do any task that suits the project, whether forecasting, prediction, modeling, or estimation. Just drop us a message or a call, and we can see to your needs.</p>
<hr>
<footer style="color:white;">
<p>Copyright 2021 by DATSTAT Statistical and Research Consultancy</p>
<p>Balibago, Angeles, Pampanga</p>
</footer>
</article>
</body>
</html>