Md. Almamun Ar Rashid Md. Almamun Ar Rashid Author I like to help everybody who are try to change hes won life and help each another. My best choose is learning and earning. I want to do something for my all unemployed person in our country. I want to change all old idea that are still now in our mind.
Title: এইচটি এম এল এর উপাদান সমূহ (HTML Elements)
Author: Md. Almamun Ar Rashid
Rating 5 of 5 Des:
এইচটিএমএএল এলিমেন্ট (HTML Element ) এইচটিএমএএল এলিমেন্ট (Element) দ্বারাই HTML Document বর্ণনা করা হয়। একটি HTML Document – এর চারটি...

এইচটিএমএএল এলিমেন্ট (HTML Element)

এইচটিএমএএল এলিমেন্ট (Element) দ্বারাই HTML Document বর্ণনা করা হয়। একটি HTML Document – এর চারটি মৌলিক Element থাকে। যথাঃ html, head, title, body।
এছাড়াও আরও অনেক Element রয়েছে।
HTML Element শুরু হয় Opening tag (<html>) দিয়ে এবং শেষ হয় closing tag (</html>) দিয়ে।
Opening tag এবং closing tag এর মাঝখানে যা থাকে তাই হচ্ছে Element।
যেমনঃ


<p>This is Element</p>
<h1>This is also an Element<h1>
<title>This is an element too</title>


 ফলাফল

This is Element

This is also an Element

This is an element too


Nested HTML Element:

Nested HTML Element হল একটি এলিমেন্ট এর আন্ডারে আরও এলিমেন্ট থাকা।
যথাঃ

<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>



ফলাফল

My First Heading

My first paragraph.


এই উদাহরণে দেখা যাচ্ছে যে html এলিমেন্টের মাঝে body এলেমেন্ট রয়েছে।
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
এবং body এলিমেন্টের এর মাঝে আরও দুইটি এলেমেন্ট p এবং h1 রয়েছে।
<h1>My First Heading</h1>
<p>My first paragraph.</p>

Empty HTML Element:

যে সকল এলেমেন্টের কোন কন্টেন্ট থাকে না তাদেরকে Empty element বলা হয়।
<br> হচ্ছে একটি empty element যার কোন closing tag নাই।

HTML Element- এর বৈশিষ্ট্যঃ

  • Start/Opening tag দিয়ে শুরু হয়।
  • End/Closing tag দিয়ে শেষ হয়।
  • Start tag এবং End tag এর মাঝে Element থাকে।
  • কিছু ক্ষেত্রে Element Content নাও থাকতে পারে।
  • কিছু Element এর End/closing ট্যাগ নাও থাকতে পারে।
  • Empty Element start ট্যাগের মাঝে শেষ করা হয়।

About Author

Advertisement

Post a Comment

 
Top