Saturday, December 5, 2020

Main Shayar Badnaam میں شاعر بدنام

   Main shayar badnaam, ho o main chala, main chala

Mehfil se na kaam,ho o main chala, main chala



Monday, October 26, 2020

My/Our School Short Essay for Primary Classes (ہمارا مدرسہ)

  (ہمارا مدرسہ)

ہمارے مدرسے کا نام سلّفِیہ ماڈل اسکول ہے۔اورمیں یہاں تیسری جماعت میں پڑھتا ہوں۔یہ درنگہ بل پانپور میں واقع ہے۔

ہمارے مدرسے میں تین بڑی مضبوط عمارتیں ہیں۔ہرایک عمارت تین منزلہ ہیں۔ جن میں تقریباََ بیس (20) سے زیادہ کمرے ہیں ۔ سارے کمرے اچھی طرح تعمیر کردہ ہیں۔ہوا کے آنے جانے کیلئے بڑی بڑی کھڑکیاں لگی ہوئی ہیں۔ ہرایک کمرے میں سفید تختیاں بھی آگے کی دیواروں پر گڑی ہوئی ہیں۔

ہمارے مدرسے میں سائنس لیبارٹری اورلائبریری کے دو الگ الگ کمرے ہیں۔پرنسپل صاحب کا آفس بھی الگ سےہے۔

ہمارے مدرسے میں اسوقت دسویں جماعت تک تعلیم دی جاتی ہیں۔


ہمارے مدرسے میں تقریباََ (450) طلباءاسوقت زیرِ تعلیم ہیں۔

ہمارے مدرسے میں تقریباََ پچیس (25) سے زائد تعلیم یافتہ اساتذہ صاحبان بچوں کو تعلیم دے رہے ہیں۔جو بڑے محنتی اور قابل ہیں۔اور بچوں سے پیار کے علاوہ اُن کی اور پورا دھیان دیتے ہیں۔

ہمارے مدرسے میں بچوں کو کھیلنے کیلئے صحن میں ایک بڑا میدان بھی ہے۔

ہمارے مدرسے کے دیگر تمام ملازمین بھی ایمانداری اور محنت سے اسکول کا کا م کرتے ہیں۔

ہمارے مدرسے کے اندر فضا اور خوشی کا ماحول ہے۔

10۔ میں اپنے مدرسے سے بہت پیار کرتا ہوں۔

*.........................................*

My /Our School

  1. The name of my/our school is the __________ which is one of the best schools in our town.
  2. I/we read in class  ___________ in this school.
  3. It is situated at _________________________
  4. It has______ big concrete buildings and each building is of _________ stories. All these buildings together have more than _____ well made and ventilated classrooms and each classroom is big and tidy having big and wide windows for good ventilation.White boards are also fitted on the front wall of each classroom.
  5. Apart from classrooms , these buildings also have practical labs, ___Library and separate male-female staff rooms.
  6. There is also____ separate block for administration in my/our school.
  7. For children there is ____ big ground/s for their playing in front of main building of my/our school.
  8. For education, it is upto ____ class standards.
  9. Almost more than _____students are getting education at present in my/our school.
  10. Almost more than____ well qualified and dedicated teachers are teaching us in my/our school.They love and care all of us.They teach us well and help us whenever we have any doubt or confusion.
  11. I/we truly love my/our school very much.


*...................................*


Monday, October 19, 2020

History of all known prophets (A.S.) by genealogy of Adam and Awe

                                     تاریخِ انبیاء  

         History of all known Prophets (A.S.):

By Genealogy of ADAM (A.S.)and AWE (A.S.)


















































Wednesday, September 23, 2020

How do i create tables in a blog or blogger or blogspot

 How do i create a Simple Table in Blogger Posts:

       First of all we are going to start with a table with 3 columns and 5 rows including a header row also(3x5). Then I will show you step by step how to add different features to the table including extra rows, a background color to the header, a border, a caption, change the size of the table, center align the table and more.Following are some important steps to remember and they are:
  1. In Blogspot or Blogger open either a new post or an existing post that you wish to add a table to

  2. On the right side of the Blogger editor below title Click on the Edit HTML tab.

  3. Write the following code in HTML editor which will produce the simple table having 3 columns and 5 rows as shown below:

..................................................................................
<table border="2" bordercolor="#0033FF" style="background-color:#99FFFF" width="100%" cellpadding="3" cellspacing="3">
<tr>
<th>Serial No</th>
<th>Employee</th>
<th>Salary</th>
</tr>
<tr>
<td>01</td>
<td>Muzammil</td>
<td>9000</td>
</tr>
<tr>
<td>02</td>
<td>Zulfikar</td>
<td>10000</td>
</tr>
<tr>
<td>03</td>
<td>Muwahhid</td>
<td>6000</td>
</tr>
<tr>
<td>04</td>
<td>Moutaqid</td>
<td>4000</td>
</tr>
</table>
......................................................................
Serial No Employee Salary
01 Muzammil 9000
02 Zulfikar 10000
03 Muwahhid 6000
04 Moutaqid 4000   
  • Make changes to the table to suit your own Blogger template if necessary by changing the following:

    <table border="2" bordercolor="#0033FF" style="background-color:#99FFFF" width="100%" cellpadding="3" cellspacing="3">

    • Border width (blue)
    • Border color (black)
    • Background color (red)
    • Table width (orange) Can be a percentage or actual width e.g 500px

  • Now we are going to fix an annoying problem in Blogger which renders too much white space above the table. We do this by adding the following styling denoted in red directly above the table tag and adding a closing </div> at the end of the table code:
           <style type="text/css">.nobrtable br { display: none }</style>
           <div class="nobrtable">                             ( before the above code)
            .......
           </div>                                                          (at the end of above code)
  • Let's add some further styling to our table header to improve the look of our table as denoted in red. Change the background color and color attributes to suit your own color scheme if you wish
<tr style="background-color:#0033FF; color:#ffffff; padding-top:5px; padding-bottom:4px;" 
 after the first line table (above code)


     * Now let's add another row to our table for Blogger so you can see how this is done
                                                                   <tr>
<td>Table Cell</td>
<td>Table Cell</td>
         <td>Table Cell</td></tr>

    * In this step we are going to center the contents of our Blogger table. This can be done in several              ways but we are going to take a short cut here by assigning a style to every table row

<style type="text/css">.nobrtable br { display: none } tr {text-align: center;} </style>
<div class="nobrtable">

   * Now we are going to jazz up our Blogger table by adding alternating colored rows to improve                readability and appearance. By far the easiest way to do this is to assign a class.

<style type="text/css">.nobrtable br { display: none } tr {text-align: center;} tr.alt td {background-color: #eeeecc; color: black;}</style>
........
........
<tr class="alt">
......
......
<tr class="alt">

    * It is also easy to add a caption to your Blogger table. For a caption above the table simply add the           caption line as shown in red. For a caption below the table add the caption line in red and a style as         shown in blue

    <style type="text/css">.nobrtable br { display: none } tr {text-align: center;} tr.alt td {background-        color: #eeeecc; color: black;} tr {text-align: center;} caption {caption-side:bottom;} </style>
    <div class="nobrtable">
    <table border="2" bordercolor="#0033FF" style="background-color:#99FFFF" width="100%"              cellpadding="3" cellspacing="3">
    <caption>A Blogger Table Caption</caption>
    <tr style="background-color:#0033FF; color:#ffffff; padding-top:5px; padding-bottom:4px;">

    * One more important property needs to be addressed in our new Blogger table to improve the look.         We can reduce the double border into a single one. The easiest way to do this is to change the                 cellspacing to zero as denoted in red. Or, alternatively we can apply the border collapse property to         our table as shown in blue. Note: Border collapse may not be supported by all browsers                           particularly if the cellspacing attribute is defined also)

      <style type="text/css">.nobrtable br { display: none } tr {text-align: center;} tr.alt td {background-       color: #eeeecc; color: black;} tr {text-align: center;} caption {caption-side:bottom;}</style>
     <div class="nobrtable">
     <table border="2" bordercolor="#0033FF" style="background-color:#99FFFF; border-                           collapse:collapse;" width="100%" cellpadding="10" cellspacing="0">
     <caption>A Blogger Table Caption</caption>
     <tr style="background-color:#0033FF; color:#ffffff; padding-top:5px; padding-bottom:4px;">

      * Now our table is ready for insertion.

...................................................................................

Monday, September 7, 2020

How do i prepare and grow Collard Greens plants (ساگ ;Haakh)


        First of all we have to know What is a Collard Green plant?Actually it is a popular vegetable plant having green colour and leafy structure as a vegetable with many different varieties growing in everywhere in the world at present which we are using with our rice as a dish during lunch or dinner.





       It is also called a Saag (ساگ) in Urdu and Haakh (ہاکھ) in Kashmiri. It is very tasty vegetable having its own smell and taste with easy digestion. It is a dish having many cooking forms.Almost all citizen of Kashmir are liking it and cooking it within their kitchens after every two or three days in a week.It is mostly used with flesh or chicken that adds its taste.Here Doctors are also advise their patients to have it but simply without much peppers during their sickness.

   1.  Preparation of Collard Greens Patches: First of all we have to prepare patches for Collard Greens plant(Saag, Haakh) by digging a field with the help of a plane spade or a garden spade.
    2.  Wait till soil dried completely. At least for half of the day.
    3.  Thereafter Hoeing and leveling of patches by a hoes.
    4.  Making each patch as flat as water approaches till their each end.
   5.  Now spread seeds of Collard Greens plant completely into an each patch on everywhere countlessly.



   6.   At last watering each Collard Greens patch lightly and  
         wait  for few days.Then Seeds will be became a saplings of 
         Collard Greens plant but of lesser size.Then you have watering 
         each of them(every patch) heavily day after two days for 
         the growth of the saplings to plants.After a month you will get 
         Collard Greens plants (Haakh, Saag) everywhere within the  
       

 patches of your liking.










...........................*...............................




Featured post

Comparison Among Islam , Judaism And Christianity

Islam , Judaism And Christianity *) Islam: Title of Followers : Muslims Origin : Arabia (622 CE) ( Fully Implemented) otherwise fro...