-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path16_11_instanceof_operator.html
155 lines (138 loc) · 5.32 KB
/
16_11_instanceof_operator.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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width" />
<!-- This is a wide open CSP declaration. To lock this down for production, see below. -->
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'; style-src 'self' 'unsafe-inline'; media-src *" />
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="cordova.js"></script>
<link href="fontawesome/css/all.css" rel="stylesheet">
<title>নতুনদের জন্য জাভা</title>
<style type="text/css">
@font-face {
font-family: "solaimanlipi";
src: url("res/assets/font/solaimanlipi.ttf");
}
/* img{
width: 100%;
}*/
img.img{
max-width: 100% !important;
border: 1px solid;
}
</style>
<style type="text/css">
body{
margin-top:20px;
color: #6f9f57 !important;
font-family: solaimanlipi;
}
a{
color: #6f9f57 !important;
}
.fas { margin-right:10px; }
.panel-body { padding:0px; }
.panel-body table tr td { padding-left: 15px }
.panel-body .table {margin-bottom: 0px; }
.slogan{
font-family: solaimanlipi;
color: white;
text-align: center;
font-size: 20px;
}
#logo_and_slogan{
position:absolute; /* position in the center of the screen */
left:50%;
top:50%;
height:50px; /* text area height */
width:225px; /* text area width */
text-align:center;
padding:0px 0px 0px 0px; /* image height is 200px (bottom 20px are overlapped with text) */
margin:-115px 0px 0px -112px; /* offset vertical: half of image height and text area height */
/* offset horizontal: half of text area width */
}
.slogan_style{
margin-top: 20px;
color: #6f9f57;
background-color: white;
text-align: center;
border: 1px solid #6f9f57;
border-radius: 5px;
font-family: solaimanlipi;
padding: 5px;
font-size: 16px;
}
/* .navbar-header{
background-color: #6f9f57;
}*/
.anchor{
font-size: 30px;
font-weight: bold;
font-family: solaimanlipi;
color: #6f9f57;
text-align: center;
}
.para_heading{
padding-bottom: 5px;
font-weight: bold;
text-align: center;
}
.para_body{
text-align: justify;
}
.brand_style{
font-size: 16px;
}
p {
margin: 0 0 5px !important;
}
td, th {
padding: 4px 10px;
border: 1px solid;
}
</style>
</head>
<body>
<div class="container">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div id="divContainer" class="container">
<div class="navbar-header">
<a class="navbar-brand brand_style" href="home.html"><span class="fas fa-arrow-left"></span>Back</a>
<a class="navbar-brand brand_style" href="slogan.html"><span class="fas fa-heading"></span>Slogan</a>
<a class="navbar-brand brand_style" href="about_me.html"><span class="fas fa-user"></span>About Me</a>
</div>
</div>
</div>
</nav>
<div class="clearfix"> </div>
<div class="clearfix"> </div>
<div class="clearfix"> </div>
<!-- Inner Content Start -->
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="panel-group" id="accordion">
<div class="panel panel-default">
<div class="panel-heading">
<h4 class="panel-title para_heading">instanceof Operator</h4>
<br>
<p>এটি এক ধরণের কম্পারিজন অপারেটর। অর্থাৎ কম্পেয়ার করে true বা false রিটার্ন করে। আপাতত খুব বেশি প্রয়োজন হবে না তোমাদের তাই এটি নিয়ে আলোচনা করা হলো না। কিন্তু এর সাথে আপাতত তোমাদের পরিচয়টা থাকুক।</p>
</div>
</div>
</div>
</div>
</div>
<!-- Inner Content End -->
</div>
</body>
<script type="text/javascript">
jQuery(document).ready(function($) {
});
</script>
</html>