-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
218 lines (175 loc) · 8.39 KB
/
index.html
File metadata and controls
218 lines (175 loc) · 8.39 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
<html lang="en">
<head>
<title>facebook api</title>
<!-- meta tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed:300,300i,400,400i,700,700i" rel="stylesheet">
<!-- bootstrap link -->
<link rel="stylesheet" href="bootstrap/bootstrap.min.css" type="text/css">
<!-- fav icon link -->
<link rel="shortcut icon" href="img/favicon%20(1).ico">
<!-- animate css link -->
<link rel="stylesheet" href="css/animate/animate.css" type="text/css">
<!-- css file link -->
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<!-- navbar -->
<nav class="navbar fb-nav navbar-inverse navbar-fixed-top" role="navigation">
<div class="container-fluid">
<div class="own-nav-wrapper">
<div class="navbar-header">
<button role="button" class="navbar-toggle collapsed pull-right" data-toggle="collapse" data-target="#own-menu">
<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 nav-style" href="#home">FACEBOOK</a>
</div>
<div class="collapse navbar-collapse" id="own-menu">
<ul class="nav navbar-nav navbar-right">
<li><a class="right-side-button home-btn" href="#home">Home</a></li>
<li><a class="right-side-button feed" href="#feed">FEED</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- form group for taking token as an input -->
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<div class="form-group">
<div class="input-group" style="margin-top:60px">
<input type="text" class="form-control" id="fbToken" placeholder="Enter your facebook api token here...">
<span class="input-group-btn">
<button id="input" class="btn btn-default" type="button">Go!</button>
</span>
</div>
</div>
</div>
</div>
</div>
<!-- loader div -->
<div class="loader">Loading...</div>
<!-- section tag for the whole fb info -->
<section id="fb-cover">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
<!-- profile pic display -->
<img class="img-responsive center-block profilePhoto img-height" style="margin:0 auto">
<span id="welcome"></span>
</div>
<!-- basic info panel -->
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="panel panel-default wow bounceInLeft">
<div class="panel-heading">
<h3 class="panel-title">Basic info</h3>
</div>
<div class="panel-body">
<p style="display:inline">first-name</p> :<span id="firstName"></span>
</div>
<div class="panel-body">
<p style="display:inline">Last-name</p>:<span id="lastName" style="display:inline-block"></span>
</div>
<div class="panel-body">
<p style="display:inline" style="overflow:hidden">mail</p>:<span id="myEmail" style="font-size:0.8rem"></span>
</div>
</div>
</div>
<!-- Family-Members and relationship -->
<div class="col-lg-6 col-md-6 col-sm-12 col-xs-12">
<div class="panel panel-default wow bounceInRight">
<div class="panel-heading">
<h3 class="panel-title">Family-Members and relationship</h3>
</div>
<div class="panel-body">
<p style="display:inline">family-members</p>:<span id="family"></span>
</div>
<div class="panel-body">
<p style="display:inline">relationship-status</p>:<span id="relStatus"></span>
</div>
<div class="panel-body">
<p style="display:inline">Gender</p>:<span id="gender"></span>
</div>
</div>
</div>
<!-- work and education div -->
<div class="col-lg-8 col-md-8 col-sm-12 col-xs-12">
<div class="cover wow bounceInRight">
<h4>Cover</h4>
<br>
<img class="myCoverPic img-responsive" alt="cover pic goes here!">
</div>
</div>
<div class="col-lg-4 col-md-4 col-sm-12 col-xs-12">
<div class="work wow bounceInLeft">
<h4>Work and Education</h4>
<br />
<p>Work : <span id="myWork"></span></p>
<p>Education : <span id="myEducation"></span></p>
</div>
</div>
<!-- feed 1 -->
<div class="col-lg-12 col-lg-offset-3 col-md-offset-3 col-md-12 col-sm-12">
<div class="feed1 animated fadeIn" data-wow-duration="1s" data-wow-delay=".5s">
<a id="postStory1"></a>
<a class="photoDisplay1"></a>
</div>
</div>
<!-- feed 1 -->
<div class="col-lg-12 col-lg-offset-3 col-md-offset-3 col-md-12 col-sm-12">
<div class="feed2 wow fadeIn" data-wow-duration="1s" data-wow-delay=".5s">
<a id="postStory2"></a>
<a class="photoDisplay2"></a>
</div>
</div>
<!-- feed 1 -->
<div class="col-lg-12 col-lg-offset-3 col-md-offset-3 col-md-12 col-sm-12">
<div class="feed3 wow fadeIn" data-wow-duration="1s" data-wow-delay=".5s">
<a id="postStory3"></a>
<a class="photoDisplay3"></a>
</div>
</div>
<!-- feed 1 -->
<div class="col-lg-12 col-lg-offset-3 col-md-offset-3 col-md-12 col-sm-12">
<div class="feed4 wow fadeIn" data-wow-duration="1s" data-wow-delay=".5s">
<a id="postStory4"></a>
<a class="photoDisplay4"></a>
</div>
</div>
<!-- feed 1 -->
<div class="col-lg-12 col-lg-offset-3 col-md-offset-3 col-md-12 col-sm-12">
<div class="feed5 wow fadeIn" data-wow-duration="1s" data-wow-delay=".5s">
<a id="postStory5"></a>
<a class="photoDisplay5"></a>
</div>
</div>
<!-- feed 1 -->
<div class="col-lg-12 col-lg-offset-3 col-md-offset-3 col-md-12 col-sm-12">
<div class="feed6 wow fadeIn" data-wow-duration="1s" data-wow-delay=".5s">
<a id="postStory6"></a>
<a class="photoDisplay6"></a>
</div>
</div>
</div>
<!-- end row -->
</div>
<!-- end container -->
</section>
<!-- end fb cover -->
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<!- on scroll animation js file -->
<script src="js/wow/wow.min.js"></script>
<!-- custom jquery file linking -->
<script type="text/javascript" src="js/app.js"></script>
<!-- bootstrap js file linking -->
<script src="js/bootstrap/bootstrap.min.js"></script>
</body>
</html>