Comparism of website with shop

                              Comparism of website with shop

~Hello friends you are welcome to this site,You are seeking many website by searching Comparism of website with shop Stop searching Iam with you ok.
Let me talk about the bussiness with we see with our necked eyes in our locality like grocery shop,medicine shop,footswear shop and many more.What we will know from that,we know that to start bussiness we have to do the followings:-
1.Decide what the bussiness we starting.
2.Take bussiness room in rent for at least one year.
3.Design the room with wood furniture or steel furniture to put the materials in listing wise in the room.
4.Decorate with attractive colors and dolls.
5.Puts goods in room.
6.Now start your bussiness.

In the same way to start the internet bussiness we must have to create the following things:-
1.Decide what online bussiness you want to do.
2.Take the Domain name related to your bussiness.
3.Design your website with your own or by hiring the good designer.
4.Do the Best Seo of the website to get good follow of traffice.
5.Now start your bussiness.


Ok,You have read both the bussiness in comparism of website with shop .We have got the simalirity that in both bussiness the public or buyer or viewer is most most Important.
Here is a word "traffice" dont get confuse this is same as buyer in real shop but traffice in internet shop.


How to design simple table with html.



Table



How to design the simple table with html

Hello friends you have came to the wright page how to design simple table with html
by all newbie learners of all the world.This content is full of all design of the table which
is necessory to be good web designer and web developer in this web era.To practice
the table design you have to do with the webeditor program name as notepad,notepad++,and other
program which is suitable with your computer.I have design this table in html because
html is the main language or backbone to learn other things of the web as css,css3,javascript,
bootstap,jqueary,Sql and othe main programming language of web era.It is sure it depends on the practice
and the projects.So don't waste
your time and come to the search keyword.


1.How to design the table of two rows and two columns.



2.How to design the table having two rows and three columns.



3.How to design the table of three rows and three columns.



4.How to design the table having header.



5.How to design the table having footer.



6.How to design the table having header and footer.



7.How to design the table having content in the middle.



8.How to design the table having left sidebar.



9.How to design the table having right sidebar.



10.How to design the table having left and right sidebar.



11.How to design the table having midbar.



12.How to design the marksheet table.



13.How to design the marksheet table having heading.



14.How to design the shop bill table having heading.



15.How to design the table having left sidebar,heading and footer.



16.How to design the table having right sidebar,heading and footer.



17.How to design the table having left sidebar,right sidebar,heading and footer.



18.How to design the table having left sidebar,right sidebar and list content in middle.



19.How to design the complex table.

20.How to design the complex table having footer.






1.How to design the table of two rows and two columns.



This is the syntax of simple table having two rows and two columns.All together four
data will be store in this table box name as the:-
first row first column as item1,
first row second column as item2

second row first column as item3,second row second column as item4

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.


item1 item2
item3 item4


Table no=1



<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td>item2</td>
</tr>
<tr>
<td>item3</td>
<td>item4</td>
</tr>
</table>


For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



2.How to design the table having two rows and three columns.



This is the syntax of simple table having two rows and three columns.All together six
data will be store in this table box name as the:-
first row first column as item1,
first row second column as item2,first row third column as item3

second row first column as item4,
second row second column as item5,second row third column as item6


This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5 item6

Table no=2




<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.


3.How to design the table of three rows and three columns.



This is the syntax of simple table having three rows and three columns.All together nine
data will be store in this table box name as the:-
first row first column as item1,
first row second column as item2,first row third column as item3

second row first column as item4,second row second column as item5,second row third column as item6

third row first column as item7,third row second column as item8,third row third column as item9

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5 item6
item7 item8 item9

Table no=3



<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>
<tr>
<td>item7</td>
<td>item8</td>
<td>item9</td>
</tr>
</table>


For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.


4.How to design the table having header.



This is the syntax of simple table having header.All together seven
data will be store in this table box name as the:-
first row first column as header.

second row first column as item1,second row second column as item2,second row third column as item3

third row first column as item4,third row second column as item5,third row third column as item6

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
Heading
item1 item2 item3
item4 item5 item6

Table no=4



<table border="1" width="60%" height="50%" align="center">
<tr>
<td colspan="3" >Heading</td>
</tr>
<tr>
<td>item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>

</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



5.How to design the table having footer.



This is the syntax of simple table having footer.All together seven
data will be store in this table box name as the:-
first row first column as item1,
first row second column as item2,first row third column as item3.

second row first column as item4,second row second column as item5,second row third column as item6.

third row first column as footer.

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5 item6
Ending

Table no=5



<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>
<tr>
<td colspan="3" >Ending</td>
</tr>

</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.


6.How to design the table having header and footer.



This is the syntax of simple table having header and footer.All together five
data will be store in this table box name as the:-
first row first column as header.

second row first column as item1,second row second column as item2,second row third column item3.

third row first column as footer.

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
Heading
item1 item2 item3
Ending

Table no=6




<table border="1" width="60%" height="50%" align="center">
<tr>
<td colspan="3" >Heading</td>
</tr>
<tr>
<td>item1</td>
<td>item2</td>
<td>item3</td>
</tr>

<tr>
<td colspan="3" >Ending</td>
</tr>

</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.


7.How to design the table having content in the middle.



This is the syntax of simple table having content in the middle.All together seven
data will be store in this table box name as the:-

first row first column as item1,first row second column as item2,first row third column item3.

second row first column as content in the middle.

third row first column as item4,third row second column as item5,third row third column item6.

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
Content
item4 item5 item6

Table no=7




<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td colspan="3" >Content</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



8.How to design the table having left sidebar.



This is the syntax of simple table having left sidebar.All together seven
data will be store in this table box name as the:-

first row first column as item1,
first row second column as item2,first row third column item3.

second row second column as item4,second row third column as item5.

third row second column as item6,third row third column as item7

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5
item6 item7

Table no=8




<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="3">item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>

</tr>
<tr>
<td>item6</td>
<td>item7</td>

</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



9.How to design the table having right sidebar.



This is the syntax of simple table having right sidebar.All together seven
data will be store in this table box name as the:-

first row first column as item1,
first row second column as item2,first row third column item3.

second row first column as item4,second row second column as item5.

third row first column as item6,third row second column as item7

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5
item6 item7

Table no=9



<table border="1" width="60%" height="50%" align="center">
<tr>

<td>item1</td>
<td>item2</td>
<td rowspan="3">item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>

</tr>
<tr>
<td>item6</td>
<td>item7</td>

</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



10.How to design the table having left and right sidebar.



This is the syntax of simple table having left and right sidebar.All together five
data will be store in this table box name as the:-

first row first column as item1,
first row second column as item2,first row third column item3.

second row second column as item4.

third row second column as item5.

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4
item5

Table no=10



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="3">item1</td>
<td>item2</td>

<td rowspan="3">item3</td>
</tr>
<tr>

<td>item4</td>

</tr>
<tr>
<td>item5</td>

</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



11.How to design the table having midbar.



This is the syntax of simple table having midbar.All together seven
data will be store in this table box name as the:-

first row first column as item1,
first row second column as item2,first row third column item3.

second row first column as item4,second row third column as item5.

third row first column as item6,third row third column as item7

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5
item6 item7

Table no=11



<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td rowspan="3">item2</td>
<td>item3</td>
</tr>
<tr>

<td>item4</td>
<td>item5</td>
</tr>
<tr>
<td>item6</td>
<td>item7</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



12.How to design the marksheet table.



This is the syntax of simple the marksheet table.All together eight
data will be store in this table box name as the:-

first row first column as item1,
first row second column as item2,first row third column item3.

second row second column as item4,second row third column as item5.

third row first column as item6,third row second column as item7,third row third column as item8

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5
item6 item7 item8

Table no=12



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="2">item1</td>
<td>item2</td>
<td>item3</td>
</tr>
<tr>
<td>item4</td>
<td>item5</td>

</tr>
<tr>
<td>item6</td>
<td>item7</td>
<td>item8</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



13.How to design the marksheet table having heading.



This is the syntax of simple the marksheet table having heading.All together seven
data will be store in this table box name as the:-

first row first column as item1,
first row second column as item2.

second row second column as item3,second row third column as item4.

third row first column as item5,third row second column as item6,third row third column as item7

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2
item3 item4
item5 item6 item7

Table no=13



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="2">item1</td>
<td colspan="2">item2</td>

</tr>
<tr>
<td>item3</td>
<td>item4</td>

</tr>
<tr>
<td>item5</td>
<td>item6</td>
<td>item7</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



14.How to design the shop bill table having heading.



This is the syntax of simple the shop bill table having heading.All together seven
data will be store in this table box name as the:-

first row first column as item1,first row second column as item2.

second row second column as item3,second row third column as item4.

third row first column as item5,third row second column as item6,third row third column as item7

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2
item3 item4 item5
item6 item7 item7

Table no=14



<table border="1" width="60%" height="50%" align="center">
<tr>
<td>item1</td>
<td colspan="2">item2</td>

</tr>
<tr>
<td>item3</td>
<td>item4</td>
<td>item5</td>
</tr>
<tr>
<td>item6</td>
<td>item7</td>
<td>item7</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.


15.How to design the table having left sidebar,heading and footer.



This is the syntax of simple table having left sidebar,heading and footer.All together fifteen
data will be store in this table box name as the:-

first row first column as item1,first row second column as item2.

second row second column as item3,second row third column as item4,second row forth column as item5,second row fifth column as item6.

third row second column as item7,third row third column as item8,third row forth column as item9,third row fifth column as item10

forth row second column as item11,forth row third column as item12,forth row forth column as item13,forth row fifth column as item14

fifth row second column as item15

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2
item3 item4 item5 item6
item7 item8 item9 item10
item11 item12 item13 item14
item15

Table no=15



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="5">item1</td>
<td colspan="4">item2</td>
</tr>

<tr>
<td>item3</td>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>

<tr>
<td>item7</td>
<td>item8</td>
<td>item9</td>
<td>item10</td>
</tr>

<tr>
<td>item11</td>
<td>item12</td>
<td>item13</td>
<td>item14</td>
</tr>

<tr>
<td colspan="4">item15</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



16.How to design the table having right sidebar,heading and footer.



This is the syntax of simple table having left sidebar,heading and footer.All together fifteen
data will be store in this table box name as the:-

first row first column as item1,first row second column as item2.

second row second column as item3,second row third column as item4,second row forth column as item5,second row fifth column as item6.

third row second column as item7,third row third column as item8,third row forth column as item9,third row fifth column as item10

forth row second column as item11,forth row third column as item12,forth row forth column as item13,forth row fifth column as item14

fifth row second column as item15

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2
item3 item4 item5 item6
item7 item8 item9 item10
item11 item12 item13 item14
item15

Table no=16



<table border="1" width="60%" height="50%" align="center">
<tr>

<td colspan="4">item1</td>
<td rowspan="5">item2</td>
</tr>

<tr>
<td>item3</td>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>

<tr>
<td>item7</td>
<td>item8</td>
<td>item9</td>
<td>item10</td>
</tr>

<tr>
<td>item11</td>
<td>item12</td>
<td>item13</td>
<td>item14</td>
</tr>

<tr>
<td colspan="4">item15</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



17.How to design the table having left sidebar,right sidebar,heading and footer.



This is the syntax of simple table having left sidebar,right sidebar,heading and footer.All together fifteen
data will be store in this table box name as the:-

first row first column as item1,first row second column as item2.

second row second column as item3,second row third column as item4,second row forth column as item5,second row fifth column as item6.

third row second column as item7,third row third column as item8,third row forth column as item9,third row fifth column as item10

forth row second column as item11,forth row third column as item12,forth row forth column as item13,forth row fifth column as item14

fifth row second column as item15

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4 item5 item6
item7 item8 item9
item10 item11 item12
item13

Table no=17



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="5">item1</td>
<td colspan="3">item2</td>
<td rowspan="5">item3</td>
</tr>

<tr>
<td>item4</td>
<td>item5</td>
<td>item6</td>
</tr>

<tr>
<td>item7</td>
<td>item8</td>
<td>item9</td>
</tr>

<tr>
<td>item10</td>
<td>item11</td>
<td>item12</td>
</tr>

<tr>
<td colspan="4">item13</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.




18.How to design the table having left sidebar,right sidebar and list content in middle.



This is the syntax of simple table having left sidebar,right sidebar and list content in middle.All together seven
data will be store in this table box name as the:-

first row first column as item1,first row second column as item2,first row fifth column as item3.

second row second column as item4

third row second column as item5

forth row second column as item6

fifth row second column as item7

This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2 item3
item4
item5
item6
item7

Table no=18



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="5">item1</td>
<td colspan="3">item2</td>
<td rowspan="5">item3</td>
</tr>

<tr>
<td colspan="3">item4</td>

</tr>

<tr>
<td colspan="3">item5</td>
</tr>

<tr>
<td colspan="3">item6</td>
</tr>

<tr>
<td colspan="3">item7</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.


19.How to design the complex table.



This is the syntax of he complex table.All together forteen
data will be store in this table.This complex table is for project that how much you have learn from this content.As you know even you
any trouble you can comment me I will instantly give you reply.
This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2
item3
item4
item5 item6 item7 item8 item9
item10 item11 item12 item13 item14


Table no=19



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="2">item1</td>
<td colspan="4">item2</td>
</tr>

<tr>
<td colspan="4">item3</td>
</tr>

<tr>
<td colspan="5">item4</td>
</tr>

<tr>
<td>item5</td>
<td>item6</td>
<td>item7</td>
<td>item8</td>
<td>item9</td>
</tr>

<tr>
<td>item10</td>
<td>item11</td>
<td>item12</td>
<td>item13</td>
<td>item14</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.



20.How to design the complex table having footer.



This is the syntax of he complex table having footer.All together eleven
data will be store in this table.This complex table is for project that how much you have learn from this content.As you know even you
any trouble you can comment me I will instantly give you reply.
This is so so simple example of table to learn,you have to be more careful to the
coding which is so sensetive all code should be same to get as the same result.
item1 item2
item3
item4
item5 item6 item7 item8 item9
item10
item11

Table no=20



<table border="1" width="60%" height="50%" align="center">
<tr>
<td rowspan="2">item1</td>
<td colspan="4">item2</td>
</tr>

<tr>
<td colspan="4">item3</td>
</tr>

<tr>
<td colspan="5">item4</td>
</tr>

<tr>
<td>item5</td>
<td>item6</td>
<td>item7</td>
<td>item8</td>
<td>item9</td>
</tr>

<tr>
<td colspan="5">item10</td>
</tr>
<tr>
<td colspan="5">item11</td>
</tr>
</table>

For practice in your Notepad you can copy and paste in your notepad,you will
get same result.You can make as like this table by knowing this table code which is
in the html code.

GO TO TOP


kalyanpur Jabadi



Kalyanpur Jabadi(कल्यानपुर जब्दी,सिरहा)


Kalyanpur jabadi is a village develeopment commitee in siraha districtit in the Sagarmatha zone south-eastern Nepal.At the time of the 1991 Nepal census it had a population of 9326.







Kalyanpur Jabadi is 
village development comittee.

Location in Nepal.

Coordinates:26 Degree 46Minute North 86 Degree 14 Minute East /

26.76 Degree North 86.23 Degree East.

Country:Nepal.

Zone:Sagarmatha Zone.

District:Siraha District.

Population(1991).

Total:9326

Time Zone Nepal Time (UTC+5:45).

But now Kalyanpur Jabadi has been changedn in to Municipality in 2073 B.S. having more than approximately 1 lakh population. The main occupation of this municipality public is Agriculture and on the other side bussiness is Trades,Banking,General store,and so on...

Shedule of the bazzar of kalyanpur jabadhi

1.monday and thursday=gramin bazzar or naya bazzar or new bazzar.

=>



sunday and wednesdar=kalyanpur bazzar or durga mandir bala bazzar.







kayanpur jabadhi is famous for Ram Mandir whis is occasinally fare in the Ramnaumi in which many people came to see the fare which is full completed in 6 days.In this fare all the entertainig programme like rotating ping or ramjhula,Death well or mauth ka kuwa,Gun shooting circus,Hello mithila,qwali,dance programme and fighting or pahalmani.3




IN this fare Mainly Pahalmani or kusti is famous,to see this programme all the people of local area and from other district and vip person also came to see this programme.

For fare day of the invitation is given by the social media,pumplet,handlets,radio station.all the estimated donation and contribution is collected from all the areas for all the well facilities in this fare programme.In this programme Ram and sita bibaha is done by making the small boy as the Ram and girl as the sita and marriage is done as our maithali cultural prograame.




in the kalyanpur jabadhi facility of transportation is bus,jeep,scorpio,bolero,sumo,basanti or city tempo,horse tempoo,truck,tiper,tanker.

in the north of kalyanpur jabadhi are majhau choktkitol,dumri,raghaupur,baluwatol and mirchaiya.

in the west of the kalyanpurjabadhi arev barkhitol majhau,chikna and bheriya.

in the east of it kaurniyahi,sanchiraiya,anarlewa,kati,belha,baninya,gamhariya,sarsor,siraha.

agricultural programme like farming,fishing,animal,husbandry.Among them agricultura is done widely.Rice agriculural is mostly done is in the rainy(season like ashwin,shraWAN,AND CUTTED IN MANGSIR AND PUSH.Due to the available of irrigation facility in this area rice production is mostly done.

Equipments used in this area for agricultura for plough,tractor bull nd halo,sickle,palo.

wheat is farm in the ashwin and cutted in magh and make it fresh and uncover with threawor machine which is connected in the tracter.

cash crops like potato,onion,Garlic,coriander,pulses of rahari,mausari,kherahi.

The posted picture is of ram janaki dharamsala which is located in the kalyanpur jabadhi-9 siraha.This beautiful house or dharma sala is bult by colletion of contribution of all the public of vkalyanpur and mainly by the family of heaven live madhuri mahaseta,rajudevi memorial and by the son dr.dipnarayansah,dr jittendra mahasetha,sukhadev mahASETHA AN ALL THE FAMILY MEMBER OF MAHASETHA FAMILY.
this dharmasala is established in the B.S.2073.in this all the facility like elecrticity,toilet,bathroom,fan,bulb,drinking water and well facvilated room with ventilated room.this earthquake resistance house is soo mucch decorated and designed by local painter,massion and staffs.in this room marriage is attended of local people ,religions programme store room and other public works is done here by paing some contribution to the ruputed person of this dharmasala.

the posted photo is of new construction bulding of police station of the kalyanpur jabadhi-9.this is located in the kalyanpur jabadhi 9 siraha in the east of drinking water tank and south of the ramlakhan hotel nnear the kuti.according to the local people and the worker of this bulding will be two fllor first will be groung floor and second will be first floor.

this is the image of kalyanpur police station which gives the protection to all the public of this local area in any problem.

this the image ogf health post of kalyanpurjabadhi 9 siraha,where is all types of governmental servive is given to the public.like wise ant 






aasthama,typhoid,fever,diarrohea and tubercullosis or tb is also treatment is diven to nthe patient.not only this much if ant kinds of abortion of timelt checked pregnent can be aborsoned pesonally and quitely.

List of the school in Kalayanpur Jabadi
1.Shreeramdulari uccha madiyamik bidyalaya Kalayanpur jabadi 6more information
7/18/2017

This is government school is established in 2006 B. S.
Here class is from one to +2 level.
In +2 level only two types of faculty one is education and another is commerse.
**Ground of sheeramdulri uccha madiyamik bidyalaya kalyanpur***

2.Bright Future English Boarding School kalyanpur jabadijabadi-9
This school is affiliated to nepal government establised in 2057
Class is from Nursery to ten.
***Play ground of this school***
***.classes of this school***
.                                        picture no 1
                                  picture no 2
         picture no 3

3.Nepal public aabasiya bidyalaya kalyanpur jabadi 6
This school is from class nursury to ten having the good computing classea, audio visual class,separate hostel for boys and girls,and well equipped gaming and practical lab services
here all the teacher teams are well qualified having close relationship with the students and guardians.
staffs of this school is so polite for any help of student like traveling new palace like picnic tour occasions programme and cultural programme
4.

Comparism of website with shop

                              Comparism of website with shop ~Hello friends you are welcome to this site,You are seeking many website b...