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
|
<!DOCTYPE html> <html class="no-js">
<head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>Winnamore</title> <script src="../js/modernizr.js"></script> <link rel="stylesheet" href="../css/style.css"> <link rel="stylesheet" href="../css/responsive.css"> <link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet"> <link href="https://fonts.googleapis.com/css?family=Overlock" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="../css/jquery.fancybox.min.css"> </head>
<body>
<div id="outer-wrap"> <div id="inner-wrap"> <header id="top" role="banner"> <div class="container"> <div class="block logo"> <a href="index.php"><img src="../img/logo.png"></a> <a class="nav-btn" id="nav-open-btn" href="#nav"></a> </div> <div class="CreateAct"> <div class="AccountDiv"> <div class="Act"> <img src="../img/elements/createAct.png" /> <div class="CreateActLink"><a href="membership-application.php">Create Accoun</a>t |</div> </div> <div class="Act"> <img src="../img/elements/act.png" /> <div class="CreateActLink"> <a data-fancybox data-src="#hidden-content" href="javascript:;"> Login </a> </div> </div> </div>
<div class="HeadMedia"> <a href="#"><img src="../img/elements/facebook.png"> </a> <a href="#"><img src="../img/elements/twitter.png"> </a> <a href="#"><img src="../img/elements/linkin.png"> </a> </div> </div> </div> </header> <div style="display: none;" id="hidden-content"> <div class="LoginContent"> <img src="../img/logo.png"> <form action="index-premier.php"> <div class="loginForm"> <input type="text" placeholder="Email Address:" class="loginInput"> <input type="password" placeholder="Password:" class="loginInput"> <input type="checkbox" name="RememberMe"> Remember Me | <a href="#" class="InputGreenLink">Forgot Password?</a><br> <input type="submit" class="LoginBTN" value="Sign In"><br> Don't have an account yet? <a href="#" class="InputGreenLink">Create Account</a>
</div> </form> </div> </div>
<nav id="nav" role="navigation"> <div class="container"> <div class="block"> <ul> <li> <a href="index.php" id="NavLink">HOME</a> </li> <!-- --> <li> <a href="aboutus-WhoWeAre.php" id="NavActive">ABOUT US</a> </li> <!-- --> <li> <a href="whycrowdfuning-WhyCrowdfunding.php" id="NavLink">WHY CROWDFUNDING</a> </li> <!-- --> <li> <a href="whywinnamore-Peer.php" id="NavLink">WHY WINNAMORE STREET</a> </li> <!-- --> <li> <a href="whatmembership.php" id="NavLink">WHAT MEMBERSHIP PROVIDES</a> </li> <li> <a href="faq.php" id="NavLink">Q&A</a> </li> </ul> <a class="close-btn" id="nav-close-btn" href="#top">Return to Content</a> </div> </div> </nav> </div>
<div class="SubPageHeadBanner"> <div class="container"> <h3> We believe that entrepreneurs, investors and services providers should be able to communicate directly with one another, so as to find the best connections for their requirements </h3> </div> </div>
<div class="Subpage"> <div class="container"> <div class="Grid-3"> <a href="aboutus-WhoWeAre.php" class="SP-sideLink-Active">Who We Are</a> <a href="aboutus-WhatWeDo.php" class="SP-sideLink">What We Do</a> <a href="aboutus-WhatWeBelieve.php" class="SP-sideLink">What We Believe</a> </div> <div class="Grid-7"> <p> Winnamore Street is an online crowdfunding network which offers its Premier Members an online location for those looking to secure funding, invest, offer professional services or seek out charitable causes to donate to. </p>
<p> <img src="../img/elements/subpage-image-1.jpg"> </p> <p> Winnamore Street is operated by Gainsters Corporation Limited (GCL) – a limited liability public company registered in Hong Kong and established to invest in promising start-ups in the Information and Communication Technology (ICT) space. Innovation in ICT is changing the way industries like Food and Water, Energy, Health and Wellness, Finance, Transportation, Entertainment and e-commerce operate. In particular, ICT has changed the way money is earned and spent. ICT has enabled those who have accumulated capital to invest in or support those who need it to make life better for all of us… without a middleman or intermediary. </p> <p>As one of the ICT-based businesses that GCL has invested in, Winnamore Street is designed to empower its Premier Members to contact and transact directly with each other – removing the charges and fees which other crowdfunding platforms usually charge. </p> </div> </div> </div>
<?php include 'include/footer.php';?> </div> <!--/#outer-wrap--> <script src="http://code.jquery.com/jquery-3.1.1.min.js"></script> <script src="../js/jquery.fancybox.min.js"></script>
<script type="text/javascript"> $(window).scroll(function() { if ($(this).scrollTop()) { $('#toTop').fadeIn(); } else { $('#toTop').fadeOut(); } });
$("#toTop").click(function() { $("html, body").animate({scrollTop: 0}, 600); }); </script>
</body>
</html>
|