-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
272 lines (251 loc) · 11.6 KB
/
index.html
File metadata and controls
272 lines (251 loc) · 11.6 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
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>fbly</title>
<link href="css/bootstrap.min.css" type="text/css" rel="stylesheet" >
<!--<link href="css/mycss.css" type="text/css" rel="stylesheet" >-->
<link href='https://fonts.googleapis.com/css?family=Shadows+Into+Light|Architects+Daughter' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Shadows+Into+Light|Architects+Daughter|Pacifico' rel='stylesheet' type='text/css'>
<style>
body{
font-family: 'Architects Daughter', cursive;
font-weight:bold;
}
.navbar-brand{
font-size:1.8em;
}
#topBackground{
background-image:url("background.jpg");
height:100px;
width:100%;
background-size:cover;
}
#title{
margin-top:100px;
text-align:center;
}
#title h1{
font-size:300%;
color:#E4EBED;
}
#title p{
color:#E4EBED;
}
.marginTop{
margin-top:20px;
}
.center{
text-align:center;
}
.why_height{
margin:100px;
font-size:300%;
}
.marginTop1{
margin-top:100px;
}
.marginTop2{
margin-top:10px;
}
#div1 h1{
font-family: 'Shadows Into Light', cursive;
}
#topBackground h1{
font-family: 'Architects Daughter', cursive;
}
#topBackground p{
font-family: 'Architects Daughter', cursive;
}
#div1 p{
font-family: 'Architects Daughter', cursive;
}
a{
font-family: 'Architects Daughter', cursive;
}
#div1{
width:100%;
background: white; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(#c0c0c0, white); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(#c0c0c0, white); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(#c0c0c0, white); /* For Firefox 3.6 to 15 */
background: linear-gradient(#c0c0c0, white); /* Standard syntax */
}
#div1 p{
font-size:100%;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.2)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.2)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.2); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.2)); /*Standard*/
}
</style>
</head>
<body data-spy="scroll" data-target=".navbar-collapse" >
<div class="navbar navbar-default navbar-fixed-top"
style="background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.7)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.7)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.7); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.7)); /*Standard*/">
<div class="container">
<div class="navbar-header" >
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">freelance_bly</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="">Home</a></li>
<li><a href="#div1">Why us?</a></li>
<!--<li><a href="">Help</a></li>-->
</ul>
<!--login form-->
<form class="navbar-form navbar-right">
<div class="form-group">
<input type="email" class="form-control" placeholder="Email" />
</div>
<div class="form-group">
<input type="password" class="form-control" placeholder="Password" />
</div>
<button type="submit" class="btn btn-success">Sign In</button>
</form>
</div>
</div>
</div>
<div class="container contentBackground" id="topBackground">
<div class="row">
<div class="col-md-6 col-md-offset-3" id="title">
<h1 class="marginTop">Welcome to XYZ</h1>
<p class="lead marginTop">Lets make it inside and explore the whole new world</p>
<p class="marginTop">To join our community and connect the real world, just register yourself with your basic informations.</p>
<form class="marginTop2">
<div class="input-group">
<span class="input-group-addon">@</span>
<input type="email" placeholder="Your Email address" class="form-control" style="color:white;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.8)); /*Standard*/ "/>
</div>
<!--college, branch, batch, city along with the basic fields(name, emailid-->
<div class="row">
<div class="col-md-6" >
<input type="text" placeholder="Your Name" class="form-control marginTop2"
style="color:white;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.8)); /*Standard*/ " />
</div>
<div class="col-md-6">
<input type="text" placeholder="City" class="form-control marginTop2" style="color:white;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.8)); /*Standard*/ " />
</div>
</div>
<input type="text" placeholder="College Name" class="form-control marginTop2" style="color:white;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.8)); /*Standard*/ "/>
<div class="row">
<div class="col-md-6">
<div class="form-group">
<div class="input-group marginTop2">
<span class="input-group-addon">Select Branch</span>
<select class="form-control" id="sel1" style="color:white;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.8)); /*Standard*/ ">
<option style="background-color:#cccccc;">Computer Science & Information Technology.</option>
<option style="background-color:#cccccc;">Electronics & communication engineering.</option>
<option style="background-color:#cccccc;">Information & Technology.</option>
<option style="background-color:#cccccc;">Electronics & Instrumentation engineering.</option>
</select>
</div>
</div>
</div>
<div class="col-md-6">
<div class="form-group">
<div class="input-group marginTop2">
<span class="input-group-addon">Select Batch</span>
<!--<label for="sel1">Select list:</label>-->
<select class="form-control" id="sel1" style="color:white;
background: red; /* For browsers that do not support gradients */
background: -webkit-linear-gradient(left,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Safari 5.1-6*/
background: -o-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8)); /*Opera 11.1-12*/
background: -moz-linear-gradient(right,rgba(255,0,0,0),rgba(0,0,0,0.8); /*Fx 3.6-15*/
background: linear-gradient(to right, rgba(255,0,0,0), rgba(0,0,0,0.8)); /*Standard*/ ">
<option style="background-color:#cccccc;">2012</option>
<option style="background-color:#cccccc;">2013</option>
<option style="background-color:#cccccc;">2014</option>
<option style="background-color:#cccccc;">2015</option>
</select>
</div>
</div>
</div>
</div>
<input type="submit" class="btn btn-success btn-lg marginTop" value="Register Me" />
</form>
</div>
</div>
</div>
<div class="container contentBackground" id="div1">
<div class="row center">
<div class="col-md-6 col-md-offset-3">
<h1 class="marginTop1">Why freelance_bly?</h1>
</div>
</div>
<div class="row marginTop1">
<div class="col-md-4">
<h2><span class="glyphicon glyphicon-thumbs-up"></span> Its easy</h2>
<p style="font-size:125%;">freelance_bly is providing you with the most easy way of connecting people , posting on their boards(like wall as on facebook), you can even chat with your friends, and there is also this new feature called as "secrecy" which enables a user to update their status for particular member in their friend list.</p>
</div>
<div class="col-md-4">
<h2><span class="glyphicon glyphicon-eye-open"></span> Interactive</h2>
<p style="font-size:125%;">freelance_bly can be thought of as your home on the Internet. It's a place people can go to leave you a message, browse through your photo collections, or even chat with you while you are online. It can be a great way to keep in contact with friends and family, and even find long lost friends that you haven't spoken to in years.</p>
</div>
<div class="col-md-4">
<h2><span class="glyphicon glyphicon-ok"></span> Secure</h2>
<p style="font-size:125%;">freelance_bly enables users to choose their own privacy settings and choose who can see specific parts of their profile. The website is free to its users and generates revenue from advertising, such as banner ads. freelance_bly requires a user's name and profile picture (if applicable) to be accessible by everyone. Users can control who sees other information they have shared, as well as who can find them in searches, through their privacy settings.</p>
</div>
</div>
</div>
<!--<div class="navbar navbar-default navbar-fixed-bottom">
<div class="container">
<button class="btn btn-success" data-toggle="modal" data-target="#mymodal">Launch modal</button>
<div class="modal" id="mymodal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button class="close" data-dismiss="modal">x</button>
<h4 class="modal-title">MyModal!</h4>
</div>
</div>
</div>
</div>
</div>
</div>-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="jquery/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<script>
$(".contentBackground").css("min-height",$(window).height());
</script>
</body>
</html>