2.10 BASIC STRUCTURE OF HTML DOCUMENT

2.10 এইচটিএমএল ডকুমেণ্টৰ মৌলিক গাঁথনি

The HTML document is mainly divided into two sections. They are HEAD section a BODY section.

এইচটিএমএল দস্তাবেজটো মুখ্যতঃ দুটা শাখাত বিভক্ত। সেইবোৰ হৈছে এটা শৰীৰ শাখাৰ হেড শাখা।

• HEAD: This contains the information about the HTML document. For Example, Title the page, version of HTML etc.

• HEAD ইয়াত এইচটিএমএল ডকুমেণ্টৰ বিষয়ে তথ্য থাকে। উদাহৰণ স্বৰূপে, পৃষ্ঠা, এইচটিএমএলৰ সংস্কৰণ আদিশিৰোনাম দিয়ক।

• BODY: This contains everything you want to display on the Web Page.

• BODYইয়াত আপুনি ৱেব পৃষ্ঠাত প্ৰদৰ্শন কৰিব বিচৰা সকলোবোৰ থাকে।

Let us now have a look at the basic structure of HTML. That is the code that is a must i every webpage to have:

এতিয়া আমি এইচটিএমএলৰ মৌলিক গাঁথনিটো চাওঁ আহক। এইটো ৱেবপৃষ্ঠাত থকা টো ৱেবপৃষ্ঠাত থকাটো অতি আৱশ্যক:

Explanation:

ব্যাখ্যা:

• The DOCTYPE declaration at the beginning of our page specifies that the documenti written in HTML5. In HTML5, the DOCTYPE declaration is required.

• আমাৰ পৃষ্ঠাৰ আৰম্ভণিতে ডক্টৰটাইপ ঘোষণাত এইচটিএমএল5-ত লিখা ডকুমেণ্টীটো নিৰ্দিষ্ট কৰা হৈছে। এইচটিএমএল5-ত, ডক্টৰটাইপ ঘোষণাৰ প্ৰয়োজন।

<HTML>: This is called HTML root element and indicates the document has been written in HTM.

<HTML>এইচটিএমএল ৰুট উপাদান বুলি কোৱা হয় আৰু ই সূচায় যে ডকুমেণ্টখন এইচটিএমত লিখা হৈছে।

</HTML>: It indicates the end of the HTML document.

</HTML>: : ই এইচটিএমএল ডকুমেণ্টৰ সমাপ্তি সূচায়।

<TITLE> This tag is used to give the title of the web page.

<TITLE>এই টেগটো ৱেব পৃষ্ঠাৰ শীৰ্ষক দিবলৈ ব্যৱহাৰ কৰা হয়।</p>

The title is displayed in the title bar of the browser window.

শীৰ্ষকটো ব্ৰাউজাৰ উইণ্ডোৰ শীৰ্ষক দণ্ডিকাত প্ৰদৰ্শিত হয়।

</TITLE>: It is used to end the title.

</TITLE>: ইয়াক শিৰোনামটো সমাপ্ত কৰিবলৈ ব্যৱহাৰ কৰা হয়।

<HEAD>: Head tag contains metadata, title, page CSS etc.

<HEAD>: হেড টেগত মেটাডাটা, শীৰ্ষক, পৃষ্ঠা চিএছএছ ইত্যাদি থাকে।

</HEAD>: It is used to end the heading.

</HEAD>:ইয়াক শিৰোনামটো সমাপ্ত কৰিবলৈ ব্যৱহাৰ কৰা হয়।

<BODY>: This tag contains the body of the web page.

<BODY>: এই টেগত ৱেব পৃষ্ঠাৰ বডী থাকে।

 </BODY>: It is used to end the body.

  </BODY>:ইয়াক শৰীৰটো শেষ কৰিবলৈ ব্যৱহাৰ কৰা হয়।