October 2020

Judiciary is the third pillar of democracy in India. Third, because at the end of the day it has to ensure that the other two pillars are functioning within their parameters. Judiciary

do not go for vote. Judiciary has no agenda. Judiciary need not have to convince any kind of egoist nor has it to follow any "ism" for that matter.

Lord Hewart, the then Lord Chief Justice of England in the case of Rex v. Sussex Justices, [1924] 1 KB 256 said inter alia Justice must not only be done, but must also be seen to be done”.

As such, it is you, whose point of view decide whether “justice have been done or not. There lies the Herculian paradox. There is no ‘draw’ game in judiciary. One party has to lose his case. Either it is the Prosecution or the defense. Either it is the Petitioner or the Respondent and it is anybody’s guess what the judgement debtor; the loser will term the judgement as.

In a country like ours, most of us are politically inclined towards this way or that and more often than not our logic and philosophy is the inductive effect of the print and audio visual media, who on the other hand have their  distinct commercial interest.

In this squared planning, it might be easy to criticise this pillar of the democracy in tune with the popular media or political power, even without being present during the actual proceeding, but on legal parlance the entire scenario could be just upside down.

A judge in a criminal trial always has an unassailable legal principle lying in front of him, before  pronouncement of his judgement... that is... “beyond all reasonable doubt”.. As such, it depends upon the investigating agency to place the evidence before the court of law in such a way so as to establish it beyond all reasonable doubts. Failing which it has two options, either to accept the verdict or to go for an appeal assailing the lower court decision. This is the procedure which is tested, trusted and complied in Indian democracy for decades together and if, even after  crores of criticism, political vendetta and commercial kickbacks, the Indian democracy has survived with glory it is because of  Judicial review.

Pendency of over 3 crore cases throughout the country further shows that even with this sluggish system, judiciary is the last hope of people.

The Universal Declaration of Human Rights, article 11, states: "Everyone charged with a penal offence has the right to be presumed innocent until proved guilty according to law in a public trial at which he has had all the guarantees necessary for his defense."

Again in criminal jurisprudence the Blackstone’s ratio is the idea that: “It is better that ten guilty persons escape than that one innocent suffer.

So have faith on judiciary, do not jump on to your conclusion based only on media feeding. Justice will be done, anybody likes it or not, it will be.

===========================

 A website consists of a set of related web pages. A web page is a document containing text, pictures, audio, video etc.  It is linked to other pages using a language called HTML.  HTML stands for Hyper Text Markup Language.

Hypertext is text that contains links to other text and images on one or more web pages. It was Ted Nelson who coined the term ‘Hypertext’ around 1965.  

In HTML, Markup refers to the code that specifies how text should appear on a web page when it is displayed or printed. The code has tags that specify, the format of a part or of the entire web page.

FEATURES OF HTML

1.     HTML is not a programming language; it is a markup language;

2.     A markup language consists of a set of markup tags;

3.     HTML is not a word processing tool like MS word;

4.     HTML is a collection of tags to design the page, layout and hyperlinks;

HTML  TAGS

HTML tags determine, the way of a web browser will display the text.  There are many different kinds of tags. Some of them are:

(i)                HTML tags are keywords enclosed between a pair of angular brackets like < html>;

(ii)             HTML tags normally come in pairs comprising start and end tags like <b> and </b>;

(iii)            Start and end tags are also called ‘opening’ or ‘ON’ tags and ‘closing’ or ‘OFF’ tags respectively;

(iv)            When both ‘ON’ and ‘OFF’ tags are present, it is called a container tag. When an ‘ON’ tag is present but the ‘OFF’ tag is missing, then it is called an empty tag;

(v)              HTML is not case sensitive. As long as there is no spelling mistake, the case of the tags does not matter.  So, <HEAD> is treated the same as <head>;

(vi)            The space between tags does not affect their output.  

 

<B> text </B> is same as <B>text</B> or <B> 

                                             text 

                                            </B>

(vii)         When we use tags in combination, we cannot overlap them, that is, the most recent tag should be closed first.

Example: <U> <B> sample text </B> </U>  

                <U> <B> sample text </U> </B>  X


HTML  DOCUMENTS STRUCTURE

Every HTML file must follow the predefined structure as given below:-

<html>

<head>

</head>

<body>

</body>

</html>

Whichever HTML code that is being written, should be written in the ‘Notepad’ application of Microsoft.

An example of a HTML code is given below:-

The following is a code for a web page informing about the beautiful flowers of the world.

















After typing a HTML code as above, we can save the file in any location we want. We should always save the file name with an extension ‘.html’.  To view the web page on a web browser, follow the given steps :-

·        Open a web browser,

·        Select File -> Open,

·        An open dialogue box appears. Click on Browse,

·        Go to the location where, the file was saved. Select the file and click on Open,

·        Click OK in the open dialogue box,

·        The HTML file opens in Internet Explorer.

A much easier way of opening the HTML file in a web browser is to close the Notepad window and click on the shortcut of Internet Explorer icon with the file name on it, formed on the home window of the computer.

OUTPUT -












HTML  TABLES

Tables are used on a web page to arrange data in the form of rows and columns. The basic table building tags are as follows:-

TAG

TAG  NAME

DESCRIPTION

<TABLE>   </TABLE>

Table tag

The start and end of the table

<TH>    </TH>

Header cell tag

A table heading cell, which is a column header or row header

<TR>     </TR>

Table row tag

Table head and table body.

<TD>   </TD>

Table data tag

Table cell (stands for “table data”),which holds the actual data










































Given below is the HTML Code for creating a calendar of the first two months of the year using tables. 

<html>

<head>

<title> Calendar </title>

</head>

<body>

<h1 align = “center”> Calendar of the year 2020 </h1> 




<br> <table align = “center” border = “3” cellspacing = “7” bgcolor = “orange” bordercolor = “blue” valign = “bottom”>

<tr>

<th> Mon </th>

<th> Tue </th>

<th> Wed </th>

<th> Thu  </th>

<th> Fri  </th>

<th> Sat  </th>

<th> Sun </th>

</tr>

<tr>

<td> - </td>

<td> - </td>

<td> 1 </td>

<td> 2 </td>

<td> 3 </td>

<td> 4 </td>

<td> 5 </td>

</tr>

<tr> <td> 6 </td>

       <td> 7 </td>

       <td> 8 </td>

       <td> 9 </td>

       <td> 10 </td>

      <td> 11 </td>

      <td> 12 </td>

</tr>

<tr> <td> 13 </td>

       <td> 14 </td>

       <td> 15 </td>

       <td> 16 </td>

       <td> 17 </td>

      <td> 18 </td>

      <td> 19 </td>

</tr>

<tr> <td> 20 </td>

       <td> 21 </td>

       <td> 22 </td>

       <td> 23 </td>

       <td> 24 </td>

      <td> 25 </td>

      <td> 26 </td>

</tr>

<tr> <td> 27 </td>

       <td> 28 </td>

       <td> 29 </td>

       <td> 30 </td>

       <td> 31 </td>

      <td> - </td>

      <td> - </td>

</tr>

</table>

<br> <h2 align = “center”><u> February </u></h2>

<br> <table align = “center” border = “3” cellspacing = “7” bgcolor = “orange” bordercolor = “blue” valign = “bottom”>

<tr>

<td> - </td>

<td> - </td>

<td> - </td>

<td> - </td>

<td> - </td>

<td> 1 </td>

<td> 2 </td>

</tr>

<tr> <td> 3 </td>

       <td> 4 </td>

      <td> 5 </td>

      <td> 6 </td>

       <td> 7 </td>

       <td> 8 </td>

       <td> 9 </td>

</tr>

<tr> <td> 10 </td>

      <td> 11 </td>

      <td> 12 </td>

       <td> 13 </td>

       <td> 14 </td>

       <td> 15 </td>

       <td> 16 </td>

</tr>

<tr> <td> 17 </td>

      <td> 18 </td>

      <td> 19 </td>

      <td> 20 </td>

       <td> 21 </td>

       <td> 22 </td>

       <td> 23 </td>

</tr>

<tr>

       <td> 24 </td>

      <td> 25 </td>

      <td> 26 </td>

      <td> 27 </td>

     <td> 28 </td>

     <td> 29 </td>

      <td> - </td>

</tr>

</table>

</body>

</html>

OUTPUT -




It all started with the Iraqi invasion of Kuwait in August, 1990. The United States of

America(U.S.A.) as the leader of  U.N. allied forces fixed the deadline of 15th of January,1991 for Iraq to pull out of Kuwait, but the defiant Iraqi President Saddam Hussain did not bulge.

As a result of this, President George H. W. Bush declared “Operation Desert Storm” on the 16th of January,1990 and the U.N. allied forces air forces of about two dozens nations led by U.S.A. invaded Iraq. The air operation lasted for about 100 hours. The hostility continued till February,1991 with Iraq eventually pulling out of Iraq while setting the Kuwait oils fields on fire. I Kuwait Sheikh returned to his motherland in March, 1991 after about 8 months of exile.

Kuwait was freed, but the allied forces could not get Saddam. He remained as defiant and elusive as ever.

The 2003 invasion of Iraq by the coalition forces of United States, United Kingdom, Australia and Poland was aimed at disarming Iraq of its weapons of mass destruction and to see an end of the regime of defiant Saddam Hussain. This time George W. Bush, the son of the erstwhile President of U.S. George H. W. Bush led the operation, his U.K. counterpart Tony Blair was also with him. Saddam disappeared from public life to an undisclosed hide out. U.S. Forces labelled him as HVT-1, i.e., High Voltage Target Number One.

In a continuing military action “Operation Red Dawn” was launched by the U.S. military forces against Iraqi Elite forces on 13th December, 2003 in the Iraqi city of Ad-Dawr near Tikrit. The operation was named after the 1984 Hollywood action film “Red Dawn”.

The U.S. special forces led by Col. James Hickey of 1st Brigade Combat team and Major General Raymond Odierno of the 4th Infantry Division, searched specifically two sites, Wolverine 1 and Wolverine 2, outside Ad-Dawr but could not spot Saddam. Soon, thereafter at about 20:30 hours of Iraqi local time, Samir, an Iraqi American interpreter, helped to spot Saddam inside a spider hole near Saddam’s Farm House at Tikrit and pulled him outside and Saddam was arrested. It was 13th of December, 2003.

Saddam Hussain surrendered and reportedly offered no resistance. He was flown to Tikrit Mission Support site by U.S. Military helicopter, where he was properly identified. Two other persons were also detained. There was no casualty in the operation.

There went on a long drawn trial of Saddam Hussain by Iraqi Special Tribunal for the alleged “Crime against humanity” and killing of 184 Shiites in the town of Dujaii in 1982.

Saddam showed his utmost defiant mood throughout the trial and argued with the trail judge and the authority till he was convicted and finally hanged 30th of December, 2006, on the first day of Ed-al-Adha. Though Saddam wanted a death at firing Squad, but the Tribunal rejected his prayer.

When asked, if Saddam had any remorse to what he did, Saddam replied- “No, I am a militant and I have no fear for myself. I have spent my life in jihad and fighting aggression. Anyone, who takes this route should not be afraid.”

-----------------------------------------------------------------

यह सब अगस्त, 1990 में कुवैत के इराकी आक्रमण के साथ शुरू हुआ। संयुक्त राज्य अमेरिका (यूएसए) संयुक्त राष्ट्र की संयुक्त सेना के नेता के रूप में इराक के लिए कुवैत से बाहर निकलने के लिए 15 जनवरी, 1991 की समय सीमा तय की गई, लेकिन इराक की उपेक्षापूर्ण राष्ट्रपति सद्दाम हुसैन नहीं उभरे.

इसके परिणामस्वरूप, राष्ट्रपति जॉर्ज एच। डब्ल्यू। बुश ने 16 जनवरी, 1990 को "ऑपरेशन डेजर्ट स्टॉर्म" की घोषणा की और अमेरिकी गठबंधन ने संयुक्त राज्य अमेरिका के नेतृत्व में लगभग दो दर्जनों देशों की वायु सेनाओं पर हमला किया। हवाई संचालन लगभग 100 घंटे तक चला। फरवरी, 1991 तक शत्रुता बनी रही, इराक ने आखिरकार कुवैत के तेल क्षेत्रों को आग लगाते हुए इराक से बाहर निकाला। मैं कुवैत शेख मार्च, 1991 में लगभग 8 महीने के निर्वासन के बाद अपनी मातृभूमि लौट आया।

कुवैत को मुक्त कर दिया गया, लेकिन सहयोगी सेनाओं को सद्दाम नहीं मिला। वह हमेशा की तरह उद्दंड और मायावी बना रहा।

संयुक्त राज्य अमेरिका, यूनाइटेड किंगडम, ऑस्ट्रेलिया और पोलैंड के गठबंधन बलों द्वारा इराक पर 2003 के आक्रमण का उद्देश्य इराक को सामूहिक विनाश के अपने हथियारों को नष्ट करने और उद्दंड सद्दाम हुसैन के शासन का अंत देखना था। इस बार अमेरिका के पूर्व राष्ट्रपति जॉर्ज एच। डब्ल्यू। बुश के बेटे जॉर्ज डब्ल्यू बुश ने ऑपरेशन का नेतृत्व किया, उनके यू.के. समकक्ष टोनी ब्लेयर भी उनके साथ थे। सद्दाम सार्वजनिक जीवन से एक अज्ञात छिपाने के लिए गायब हो गया। अमेरिकी बलों ने उसे एचवीटी -1, यानी हाई वोल्टेज टारगेट नंबर वन के रूप में लेबल किया।

एक निरंतर सैन्य कार्रवाई में 13 दिसंबर, 2003 को इराकी संभ्रांत बलों के खिलाफ अमेरिकी सैन्य बलों द्वारा तिकरित के पास इराकी शहर अदवी-डावर में "ऑपरेशन रेड डॉन" शुरू किया गया था। इस ऑपरेशन का नाम 1984 की हॉलीवुड एक्शन फिल्म "रेड डॉन" के नाम पर रखा गया था।

1 ब्रिगेड कॉम्बैट टीम के कर्नल जेम्स हिक्की और 4 इन्फेंट्री डिवीजन के मेजर जनरल रेमंड

ओडिएर्नो के नेतृत्व में अमेरिकी विशेष बलों ने विशेष रूप से दो साइटों, वूल्वरिन 1 और वूल्वरिन 2 को एड-ड्रेड के बाहर खोजा, लेकिन सद्दाम को हाजिर नहीं कर सके। जल्द ही, इराकी अमेरिकी दुभाषिया, समीर के बारे में 20:30 घंटे बाद, तिकरित में सद्दाम के फार्म हाउस के पास एक मकड़ी के छेद के अंदर सद्दाम को जगह बनाने में मदद मिली और उसे बाहर खींच लिया और सद्दाम को गिरफ्तार कर लिया गया। यह दिसंबर, 2003 का 13 वां दिन था।

सद्दाम हुसैन ने आत्मसमर्पण किया और कथित तौर पर कोई प्रतिरोध नहीं किया। उन्हें अमेरिकी सैन्य हेलीकॉप्टर द्वारा तिकरित मिशन सपोर्ट साइट पर ले जाया गया, जहां उनकी ठीक से पहचान हो गई। दो अन्य व्यक्तियों को भी हिरासत में लिया गया। ऑपरेशन में कोई हताहत नहीं हुआ।

1982 में इज़्ज़त स्पेशल ट्रिब्यूनल द्वारा सद्दाम हुसैन के खिलाफ "मानवता के खिलाफ अपराध" और 1982 में दुजई शहर में 184 शियाओं की हत्या के लिए लंबे समय तक मुकदमा चला।

सद्दाम ने पूरे मुकदमे के दौरान अपना बेहद खराब मिजाज दिखाया और ट्रायल जज और अथॉरिटी से बहस की | एड-अल-अधा के पहले दिन 30 दिसंबर, 2006 को दोषी ठहराए जाने के बाद सद्दाम को फांसी दी गई हालाँकि सद्दाम फायरिंग स्क्वाड में मौत चाहता था, लेकिन ट्रिब्यूनल ने उसकी प्रार्थना को अस्वीकार कर दिया।


यह
पूछे जाने पर कि क्या सद्दाम ने अपने किए पर कोई पछतावा किया, सद्दाम ने जवाब दिया- नहीं, मैं एक आतंकवादी हूं और मुझे खुद से कोई डर नहीं है। मैंने जिहाद और आक्रामकता से लड़ने में अपना जीवन बिताया है। कोई भी, जो इस मार्ग को लेता है, उसे डरना नहीं चाहिए।”


------------------------------------------

এর সবই আগস্ট, ১৯৯০ সালে ইরাকি কুয়েতের আক্রমণ দিয়ে শুরু হয়েছিল জাতিসংঘের মিত্রবাহিনীর নেতৃত্ব হিসাবে আমেরিকা যুক্তরাষ্ট্র (মার্কিন যুক্তরাষ্ট্র) ইরাকের কুয়েতকে সরিয়ে নেওয়ার জন্য ১৯৯১ সালের জানুয়ারির ১৫ তারিখের সময়সীমা বেঁধেছিল, কিন্তু বিদ্রোহী ইরাকি রাষ্ট্রপতি সাদ্দাম হুসেন বুজলেন না

এর ফলস্বরূপ, রাষ্ট্রপতি জর্জ এইচ ডাব্লু বুশ 16 জানুয়ারী, 1990-অপারেশন ডেজার্ট স্টর্ম ঘোষণা করেছিলেন এবং মার্কিন মিত্র বাহিনী আমেরিকা যুক্তরাষ্ট্রের নেতৃত্বে প্রায় দুই ডজন দেশটির বিমান বাহিনী ইরাকে আক্রমণ করেছিল বিমান চালনা প্রায় 100 ঘন্টা স্থায়ী হয়েছিল ted কুয়েত তেলের ক্ষেতগুলিতে আগুন দেওয়ার সময় ইরাক অবশেষে ইরাক থেকে বেরিয়ে আসার সাথে সাথে ১৯৯১ সালের ফেব্রুয়ারি অবধি বৈরিতা অব্যাহত ছিল আমি কুয়েত শেখ প্রায় 8 মাস নির্বাসনের পরে 1991 সালের মার্চ মাসে তার মাতৃভূমিতে ফিরে আসেন

কুয়েতকে মুক্তি দেওয়া হয়েছিল, কিন্তু মিত্রবাহিনী সাদ্দামকে পেতে পারেনি তিনি বরাবরের মতো প্রতিবাদী অধরা ছিলেন

২০০৩ সালে মার্কিন যুক্তরাষ্ট্র, যুক্তরাজ্য, অস্ট্রেলিয়া এবং পোল্যান্ডের জোট বাহিনী ইরাক আক্রমণ করেছিল যার লক্ষ্য ছিল ইরাককে এর ব্যাপক ধ্বংসযজ্ঞের অস্ত্র নিরস্ত করা এবং বিদ্রোহী সাদ্দাম হুসেনের শাসনের অবসান ঘটানো এবার মার্কিন যুক্তরাষ্ট্রের প্রাক্তন রাষ্ট্রপতি জর্জ এইচ ডব্লু বুশের পুত্র জর্জ ডব্লু বুশ এই অভিযানের নেতৃত্ব দিয়েছিলেন, তাঁর মার্কিন প্রতিপক্ষ টনি ব্লেয়ারও তাঁর সাথে ছিলেন সাদ্দাম জনজীবন থেকে অজ্ঞাতসারে লুকিয়ে ছিলেন disapp মার্কিন বাহিনী তাকে এইচভিটি -, অর্থাৎ, উচ্চ ভোল্টেজ লক্ষ্যমাত্রা এক নম্বর হিসাবে লেবেল করেছে

অব্যাহত সামরিক ক্রিয়াকলাপে "অপারেশন রেড ডন" মার্কিন সামরিক বাহিনী ইরাকি এলিট বাহিনীর বিরুদ্ধে ১৩ ডিসেম্বর, ২০০৩ তারিখে ইরাকের তিকিতরের নিকটবর্তী শহর আদ-দাওয়ারে অভিযান চালিয়েছিল এই অপারেশনটির নামকরণ করা হয়েছিল 1984 সালের হলিউড অ্যাকশন ফিল্ম "রেড ডন" এর নামে

আমেরিকা যুক্তরাষ্ট্রের বিশেষ বাহিনী ব্রিগেড কমব্যাট দলের কর্নেল জেমস হিকির নেতৃত্বে এবং চতুর্থ পদাতিক বিভাগের মেজর জেনারেল রেমন্ড ওডার্নোর নেতৃত্বে বিশেষভাবে দুটি বিজ্ঞাপন, ওলভারাইন 1 এবং ওলভারাইন 2, অ্যাড-দাওয়ারের বাইরে অনুসন্ধান করেছিল কিন্তু সাদ্দামকে খুঁজে পায়নি শীঘ্রই, এর পরে ইরাকি স্থানীয় সময় প্রায় 20:30 ঘন্টা, সমীর, একজন ইরাকি আমেরিকান দোভাষী, সাদ্দামকে ত্রিকিতের সাদ্দামের ফার্ম হাউজের নিকটে মাকড়সার গর্তের ভিতরে সন্ধান করতে সাহায্য করেছিলেন এবং তাকে বাইরে টেনে আনেন এবং সাদ্দামকে গ্রেপ্তার করা হয় এটি 2003 এর 13 ডিসেম্বর ছিল

সাদ্দাম হুসেন আত্মসমর্পণ করে এবং প্রতিরোধের প্রস্তাব দেয়নি বলে জানা গেছে মার্কিন যুক্তরাষ্ট্রের সামরিক হেলিকপ্টার দিয়ে তাঁকে টিক্রিট মিশন সাপোর্ট সাইটে পৌঁছে দেওয়া হয়েছিল, যেখানে তাকে যথাযথভাবে সনাক্ত করা হয়েছিল আরও দু'জনকে আটক করা হয়েছিল অভিযানে কোনও হতাহত হয়নি

১৯৮২ সালে দুজাই শহরে "মানবতার বিরুদ্ধে অপরাধ" ১৮৪ শিয়া হত্যার অভিযোগে ইরাকি বিশেষ ট্রাইব্যুনাল কর্তৃক সাদ্দাম হুসেনের দীর্ঘকালীন বিচার হয়েছিল

সাদ্দাম পুরো বিচার চলাকালীন তার চরম বিরোধী মেজাজ দেখিয়েছিলেন এবং Trial Judge ও কর্তৃত্বের


সাথে তর্ক করেছিলেন যতক্ষণ না তাকে দোষী সাব্যস্ত করা হয় এবং শেষ অবধি এড-আল-আদার প্রথম দিন, ২০০ 30 সালের ৩০ শে ডিসেম্বর ফাঁসি দেওয়া হয় যদিও স্কোয়াড ফায়ারিংয়ে সাদ্দাম মৃত্যু চেয়েছিলেন, তবে ট্রাইব্যুনাল তাঁর প্রার্থনা প্রত্যাখ্যান করেছিলেন

যখন তাকে জিজ্ঞাসা করা হয়েছিল, সাদ্দাম তার কাজ সম্পর্কে কোন অনুশোচনা প্রকাশ করেছে, সাদ্দাম জবাব দিয়েছিলেন- না, আমি জঙ্গি এবং আমার নিজের সম্পর্কে কোনও ভয় নেই আমি জিহাদ এবং আগ্রাসনের লড়াইয়ে জীবন কাটিয়েছি যে কেউ, এই পথটি নিয়ে যাওয়ার ফলে ভয় পাওয়া উচিত নয় "

---------------------------------------------------------------

MKRdezign

Contact Form

Name

Email *

Message *

Powered by Blogger.
Javascript DisablePlease Enable Javascript To See All Widget