26
26
27
27
<!-- Google Knowledge Graph card -->
28
28
< script type ='application/ld+json '>
29
- {
30
- "@context" : "http://www.schema.org" ,
31
- "@type" : "NettyFinder" ,
32
- "name" : "NettyFinder" ,
33
- "url" : "https://bolajiayodeji.github.io/netty-finder" ,
34
- "logo" : "https://bolajiayodeji.github.io/netty-finder/img/logo.png" ,
35
- "description" : "This script checks a Nigerian Telephone number and detects which network it belongs to."
36
- }
37
- </ script >
29
+ {
30
+ "@context" : "http://www.schema.org" ,
31
+ "@type" : "NettyFinder" ,
32
+ "name" : "NettyFinder" ,
33
+ "url" : "https://bolajiayodeji.github.io/netty-finder" ,
34
+ "logo" : "https://bolajiayodeji.github.io/netty-finder/img/logo.png" ,
35
+ "description" : "This script checks a Nigerian Telephone number and detects which network it belongs to."
36
+ }
37
+ </ script >
38
38
<!--Bootstrap CDN-->
39
39
< link rel ="stylesheet " href ="css/bootstrap.min.css ">
40
+ <!--FontAwesome CDN-->
41
+ < link rel ="stylesheet " href ="https://use.fontawesome.com/releases/v5.4.2/css/all.css " integrity ="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns " crossorigin ="anonymous ">
40
42
<!--Main Stylesheet-->
41
43
< link rel ="stylesheet " type ="text/css " media ="screen " href ="css/app.css " />
42
44
<!--logo-->
46
48
< body >
47
49
< header >
48
50
< h1 > NettyFinder 🚀</ h1 >
51
+
49
52
< svg xmlns ="http://www.w3.org/2000/svg " viewBox ="0 0 100 100 " preserveAspectRatio ="none ">
50
53
< polygon class ="svg--sm " fill ="white " points ="0,0 30,100 65,21 90,100 100,75 100,100 0,100 " />
51
- < polygon class ="svg--lg " fill ="white " points ="0,0 15,100 33,21 45,100 50,75 55,100 72,20 85,100 95,50 100,80 100,100 0,100 " />
54
+ < polygon class ="svg--lg " fill ="white " points ="0,0 15,100 33,21 45,100 50,75 55,100 72,20 85,100 95,50 100,80 100,100 0,100 "
55
+ />
52
56
</ svg >
53
57
</ header >
54
58
55
- < div class ="col-md-12 col-sm-12 ">
56
- < div class ="container ">
57
-
58
- < h1 class ="ml1 ">
59
- < span class ="text-wrapper ">
60
- < span class ="line line1 "> </ span >
61
- < span class ="letters ">
62
- This script checks a Nigerian < img src ="https://cdn3.iconfinder.com/data/icons/world-flags-square-vol-2/48/Nigeria-512.png "
63
- class ="flag " alt ="Nigeria Flag ">
64
- Telephone number and detects which network it belongs to.
65
- </ span >
66
- < span class ="line line2 "> </ span >
67
- </ span >
68
- </ h1 >
69
- </ div >
70
- </ div >
71
- < hr />
72
-
73
59
< section id ="userInput ">
74
60
< div class ="container ">
75
61
< div class ="row ">
76
- < br /> < br />
77
- < div class ="col-md-6 ">
78
- < div class ="alert alert-danger text-center " role ="alert ">
79
- Enter number without (+234), e.g 08109445504
80
- </ div >
81
- </ div >
82
-
83
- < div class ="col-md-6 ">
84
- < div class ="alert alert-danger text-center " role ="alert ">
85
- Number must be 11 digits and not less than or greather than
86
- </ div >
87
- </ div >
88
-
89
62
< div class ="col-md-6 col-sm-6 ">
90
63
91
64
<!-- NettyFinder Form -->
92
65
< form >
93
- < br /> < br /> < br />
66
+ < br />
67
+ < br />
68
+ < br />
94
69
< div class ="form-group ">
70
+ < div class ="col-md-12 ">
71
+ < div class ="alert alert-danger text-center " role ="alert ">
72
+ < p class ="ml1 ">
73
+ < span class ="text-wrapper ">
74
+ < span class ="line line1 "> </ span >
75
+ < span class ="letters ">
76
+ This script checks a Nigerian
77
+ < img src ="https://cdn3.iconfinder.com/data/icons/world-flags-square-vol-2/48/Nigeria-512.png "
78
+ class ="flag " alt ="Nigeria Flag "> Telephone number and detects which network it belongs to.
79
+ </ span >
80
+ < span class ="line line2 "> </ span >
81
+ </ span >
82
+ </ p >
83
+ </ div >
84
+ </ div >
85
+
86
+ < div class ="col-md-12 ">
87
+ < div class ="alert alert-danger text-center " role ="alert ">
88
+ Enter number without [+234] e.g 08109445504
89
+ </ div >
90
+ </ div >
95
91
< div class ="col-md-12 col-sm-12 ">
96
- < input type ="text " name ="telephone " class ="form-control " placeholder ="Enter Telephone number "
97
- id ="cf-name ">
92
+ < input type ="text " name ="telephone " class ="form-control " placeholder ="Enter Telephone number " id ="cf-name ">
98
93
</ div >
99
94
< div class ="col-md-3 col-sm-3 ">
100
95
< button type ="button " class ="form-control " onclick ="compute(form) "> Submit</ button >
@@ -104,8 +99,7 @@ <h1 class="ml1">
104
99
</ div >
105
100
106
101
< div class ="col-md-12 col-sm-12 ">
107
- < input id ="result " type ="text " name ="nettyResult " class ="form-control " placeholder ="NettyFinder Result "
108
- readonly >
102
+ < input id ="result " type ="text " name ="nettyResult " class ="form-control " placeholder ="NettyFinder Result " readonly >
109
103
</ div >
110
104
</ div >
111
105
</ form >
@@ -115,35 +109,99 @@ <h1 class="ml1">
115
109
116
110
< div class ="col-md-6 col-sm-6 ">
117
111
< div class ="container ">
118
- < div class ="shareButton ">
119
- < a href ="https://twitter.com/intent/tweet?&ref_src=twsrc%5Etfw " class ="twitter-mention-button "
120
- data-size ="large " data-text ="Hello there! I just tried out #NettyFinder and it got the network of my Nigerian Telephone number right. Some cool app developed by @iambolajiayo, check it out https://bolajiayodeji.github.io/netty-finder/ "
121
- data-show-count ="false "> Tweet to @iambolajiayo</ a >
122
- < script async src ="https://platform.twitter.com/widgets.js " charset ="utf-8 "> </ script >
123
-
124
- < iframe src ="https://www.facebook.com/plugins/share_button.php?href=https%3A%2F%2Fbolajiayodeji.github.io%2Fnetty-finder%2F&layout=button_count&size=large&mobile_iframe=true&appId=1638690196224226&width=84&height=28 "
125
- width ="90 " height ="28 " style ="border:none;overflow:hidden " scrolling ="no " frameborder ="0 "
126
- allowTransparency ="true " allow ="encrypted-media "> </ iframe >
112
+ < img src ="img/logo.png " class ="img-responsive " alt ="nettyfinder spaceship ">
127
113
</ div >
128
114
</ div >
129
115
</ div >
130
116
</ div >
131
- </ div >
132
117
</ section >
133
118
119
+
120
+
121
+ <!-- FOOTER -->
134
122
< footer >
135
- < div style ="background-color:#ddd; " role ="alert ">
136
- < hr >
137
- < p class ="text-center "> Developed by; < a href ="https://bolajiayodeji.github.io " target ="_blank "> Bolaji
138
- Ayodeji</ a > </ p >
139
- < p class ="mb-0 text-center "> Source code: < a href ="https://github.com/BolajiAyodeji/netty-finder " target ="_blank "> Github</ a >
140
- || < a href ="https://codepen.io/iambolajiayo/pen/xyBVGx " target ="_blank "> Codepen</ a > </ p >
123
+ < div class ="container ">
124
+ < div class ="row ">
125
+
126
+ < div class ="col-md-6 col-sm-12 ">
127
+ < div class ="footer-thumb ">
128
+ < h4 >
129
+ Made with
130
+ < i class ="fas fa-heart "> </ i > by
131
+ < a href ="https://bolajiayodeji.github.io "> Bolaji Ayodeji</ a > and
132
+ < a href ="https://github.com/BolajiAyodeji/netty-finder/graphs/contributors "> this awesome people</ a >
133
+ </ p >
134
+ </ div >
135
+ </ div >
136
+
137
+ < div class =" col-md-4 col-sm-12 ">
138
+ < div class ="footer-thumb ">
139
+ < div class ="shareButton ">
140
+ < a href ="https://twitter.com/intent/tweet?&ref_src=twsrc%5Etfw " class ="twitter-mention-button " data-size ="large " data-text ="Hello there! I just tried out #NettyFinder and it got the network of my Nigerian Telephone number right. Some cool app developed by @iambolajiayo, check it out https://bolajiayodeji.github.io/netty-finder/ "
141
+ data-show-count ="false "> Tweet to @iambolajiayo</ a >
142
+ < script async src ="https://platform.twitter.com/widgets.js " charset ="utf-8 "> </ script >
143
+
144
+ < iframe src ="https://www.facebook.com/plugins/share_button.php?href=https%3A%2F%2Fbolajiayodeji.github.io%2Fnetty-finder%2F&layout=button_count&size=large&mobile_iframe=true&appId=1638690196224226&width=84&height=28 " width ="90 " height ="28 " style ="border:none;overflow:hidden "
145
+ scrolling ="no " frameborder ="0 " allowTransparency ="true " allow ="encrypted-media "> </ iframe >
146
+ </ div >
147
+ </ div >
148
+ </ div >
149
+
150
+ < div class ="col-md-2 col-sm-12 ">
151
+ < div class ="footer-thumb ">
152
+ < a class ="github-button " href ="https://github.com/BolajiAyodeji/netty-finder " data-icon ="octicon-star " data-size ="large " data-show-count ="true " aria-label ="Star BolajiAyodeji/netty-finder on GitHub "> Star</ a >
153
+ < a class ="github-button " href ="https://github.com/BolajiAyodeji/netty-finder/fork " data-icon ="octicon-repo-forked " data-size ="large " data-show-count ="true " aria-label ="Fork BolajiAyodeji/netty-finder on GitHub "> Fork</ a >
154
+ < a class ="github-button " href ="https://github.com/BolajiAyodeji/netty-finder/subscription " data-icon ="octicon-eye " data-size ="large " data-show-count ="true " aria-label ="Watch BolajiAyodeji/netty-finder on GitHub "> Watch</ a >
155
+ </ div >
156
+ </ div >
157
+ </ div >
158
+
159
+
160
+
161
+ < div class ="col-md-12 col-sm-12 ">
162
+ < div class ="footer-bottom ">
163
+ < div class ="col-md-6 col-sm-5 ">
164
+ < div class ="copyright-text ">
165
+ < p > Copyright ©
166
+ < script >
167
+ document . write ( new Date ( ) . getFullYear ( ) ) ;
168
+ </ script >
169
+ </ p >
170
+ </ div >
171
+ </ div >
172
+
173
+ < ul class ="social-icon ">
174
+ < li >
175
+ < a href ="https://facebook.com/iambolajiayo " class ="fab fa-facebook-square " attr ="facebook icon "> </ a >
176
+ </ li >
177
+ < li >
178
+ < a href ="https://twitter.com/iambolajiayo " class ="fab fa-twitter "> </ a >
179
+ </ li >
180
+ < li >
181
+ < a href ="https://instagram.com/iambolajiayo " class ="fab fa-instagram "> </ a >
182
+ </ li >
183
+ < li >
184
+ < a href ="https://linkedin/in/iambolajiayo " class ="fab fa-linkedin "> </ a >
185
+ </ li >
186
+ < li >
187
+ < a href ="https://github.com/bolajiayodeji " class ="fab fa-github "> </ a >
188
+ </ li >
189
+ < li >
190
+ < a href ="https://codepen.io/iambolajiayo " class ="fab fa-codepen "> </ a >
191
+ </ li >
192
+ </ ul >
193
+ </ div >
194
+ </ div >
195
+ </ div >
196
+
197
+ </ div >
141
198
</ div >
142
199
</ footer >
143
200
144
- < script src ="js/jquery.js "> </ script >
145
- < script src ="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js "> </ script >
146
- < script src ="js/app.js "> </ script >
201
+ < script src ="js/jquery.js "> </ script >
202
+ < script async defer src ="https://buttons.github.io/buttons.js "> </ script >
203
+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/animejs/2.0.2/anime.min.js "> </ script >
204
+ < script src ="js/app.js "> </ script >
147
205
</ body >
148
206
149
207
</ html >
0 commit comments