-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfacebook.html
98 lines (76 loc) · 2.38 KB
/
facebook.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<style type="text/css">
body{
padding: 3%;
cursor: pointer;
}
.card {
background-color: #ffffff;
border-radius: 2px;
box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06), 0 0 3px rgba(0, 0, 0, 0.18), 0 1px 3px rgba(0, 0, 0, 0.18);
display: block;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
margin-top: 10px;
margin-bottom: 10px;
transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.card-inner {
margin: 10px 10px;
min-width: 0;
position: relative;
}
.card-header .card-inner {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
font-size: 16px;
line-height: 24px;
margin-top: 16px;
margin-bottom: 16px;
text-decoration-color: green;
}
.no-flexbox .card-header-side + .card-inner, .no-flexbox .tile-side + .card-inner {
overflow: hidden;
}
.card-main {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
min-width: 0;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<p> Hi this is Chinmaya - <a id="facebookBtn" href="#">Click here to get my facebook info</a></p>
</div>
<div>
<ul>
<li> Profile - <span id="myProfileId"></span> </li>
<li> Name - <span id="myName"></span> </li>
<li>Email - <span id="myEmail"></span></li>
<li>Hometown - <span id="myHometown"></span></li>
<li>Education- <span id="myEducation"></span></li>
<li>Current location - <span id="myLocation"></span></li>
</div>
<div id='post-result'></div>
</div>
<!-- Latest compiled and minified JavaScript -->
<script src="jquery.min.js"></script>
<script type="text/javascript" src="j.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" ></script>
</body>
</html>