-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathinvestorCompany.php
More file actions
223 lines (199 loc) · 7.16 KB
/
investorCompany.php
File metadata and controls
223 lines (199 loc) · 7.16 KB
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
<?php include('function.php');?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale = 1.0, maximum-scale = 1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<!-- -Page Title- -->
<title>investorCompany</title>
<!-- ====== -Google Fonts- ====== -->
<link href="https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800" rel="stylesheet">
<!-- ====== -End Google Fonts- ====== -->
<!-- ====== -CSS- ====== -->
<!-- -Normalize css- -->
<link rel="stylesheet" type="text/css" href="css/normalize.css">
<!-- -Animate css- -->
<link rel="stylesheet" type="text/css" href="css/animate.css">
<!-- -Font Awesome- -->
<link rel="stylesheet" type="text/css" href="css/font-awesome.min.css">
<!-- -Ionicons- -->
<link rel="stylesheet" type="text/css" href="css/ionicons.min.css">
<!-- -Bootstrap v3.3.1- -->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- Slick -->
<link rel="stylesheet" href="css/slick.css">
<link rel="stylesheet" href="css/slick-theme.css">
<!-- Magnific Popup -->
<link rel="stylesheet" href="css/magnific-popup.css">
<!-- -Custom style CSS- -->
<link rel="stylesheet" type="text/css" href="css/style.css">
<!-- -Custom responsive style CSS- -->
<link rel="stylesheet" type="text/css" href="css/responsive.css">
<!-- ====== -End CSS- ====== -->
<!-- -Favicon- -->
<link rel="shortcut icon" href="img/favicon.png">
<style>
.video h1 {
text-align: center;
color: #fff;
font-family: 'Dosis', sans-serif;
position: absolute;
z-index: 100;
left: 0;
top: 40%;
right: 0;
text-transform: uppercase;
font-size: 90px;
}
.video img {
z-index: 100;
width: 200px;
position: absolute;
top: 25%;
left: 0;
right: 0;
margin: 0 auto;
}
.video p {
position: absolute;
top: 60%;
color: #fff;
font-family: 'Dosis', sans-serif;
left: 0;
right: 0;
width: 50%;
text-align: center;
margin: 0 auto;
}
.video {
overflow: hidden;
height: 100vh;
}
body {
background: #1a1919;
color:white;
}
.video .btn-custom-services {
position: absolute;
font-family: 'Dosis', sans-serif;
top: 70%;
left: 0;
right: 0;
margin: 0 auto;
width: 150px;
text-align: center;
}
#demo img{
width: 100%;
}
#demo .btn-custom-services {
text-align: center;
margin: 10px auto;
display: block;
width: 150px;
}
#demo {
padding: 80px 0;
}
#demo h1 {
margin-bottom: 10px;
text-align: center;
font-family: 'Dosis', sans-serif;
color: #f0f0f0;
text-transform: uppercase;
}
.devi {
background: #e19e20;
width: 150px;
height: 2px;
display: block;
margin: 0 auto;
margin-bottom: 40px;
}
.up {
margin-top: 40px;
}
.logo img {
max-width: 200px;
}
@media screen and (max-width: 991px) {
.video h1 {
font-size: 40px;
}
.video p {
top: 52%;
width: 85%;
font-size: 14px;
}
}
</style>
</head>
<body>
<header class="header">
<div class="container">
<div class="col-lg-3 col-md-3 col-sm-6 col-xs-6">
<div class="logo">
<img src="/img/logo.png" alt="Aya Agency Logo">
</div>
</div>
<div class="col-lg-9 col-md-9 col-sm-6 col-xs-6">
<nav class="menu">
<ul>
<a href="/companyReg.php" ><li>Sign up</li></a>
<li><a href="/companyListing.php">Companies</a></li>
<li><a href="/investor.php">Investor</a></li>
</ul>
</nav>
<nav class="mobilenav">
<ul>
<li><a href="/companyReg.php">Sign up</a></li>
<li><a href="/companyListing.php">Companies</a></li>
<li><a href="/investor.php">Investor</a></li>
</ul>
</nav>
<a href="javascript:void(0)" class="icon">
<div class="hamburger">
<div class="menui top-menu"></div>
<div class="menui mid-menu"></div>
<div class="menui bottom-menu"></div>
</div>
</a>
</div>
</div>
</header>
<?php companyDetails($_GET['val']); ?>
<!-- ==== JAVASCRIPT FILES ==== -->
<!-- Jquery -->
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Owl Carousel -->
<script src="js/owlcarousel/owl.carousel.min.js"></script>
<!-- Slick Slider -->
<script src="js/slick.min.js"></script>
<!-- YouTube Video -->
<script src="js/jquery.youtubebackground.js"></script>
<!-- Smooth scroll -->
<script src="js/smooth-scroll.js"></script>
<!-- Parallax -->
<script src="js/parallax.min.js"></script>
<!-- Maginific Popup Modal -->
<script src="js/jquery.magnific-popup.min.js"></script>
<!-- jQuery Filterizr -->
<script src="js/jquery.filterizr.js"></script>
<!-- Custom -->
<script src="js/custom.js"></script>
<script>
$('header').parallax();
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','../www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-103797393-1', 'auto');
ga('send', 'pageview');
</script>
<!-- ==== END JAVASCRIPT FILES ==== -->
</body>
<!-- Mirrored from aya.unomiathemes.com/index.html by HTTrack Website Copier/3.x [XR&CO'2014], Thu, 17 Aug 2017 06:13:12 GMT -->
</html>