HTML5 এর কিছু Elements যে গুলো সব সময় প্রয়োজন – Creative IT Blog
Notice: Trying to access array offset on value of type bool in /home1/cjsmpham/_addon/priyolekha.com/wp-content/plugins/taqyeem/taqyeem.php on line 611

Notice: Trying to access array offset on value of type bool in /home1/cjsmpham/_addon/priyolekha.com/wp-content/plugins/taqyeem/taqyeem.php on line 611

Notice: Trying to access array offset on value of type bool in /home1/cjsmpham/_addon/priyolekha.com/wp-content/plugins/taqyeem/taqyeem.php on line 611

Notice: Trying to access array offset on value of type bool in /home1/cjsmpham/_addon/priyolekha.com/wp-content/plugins/taqyeem/taqyeem.php on line 611

Notice: Trying to access array offset on value of type bool in /home1/cjsmpham/_addon/priyolekha.com/wp-content/plugins/taqyeem/taqyeem.php on line 611

Notice: Trying to access array offset on value of type bool in /home1/cjsmpham/_addon/priyolekha.com/wp-content/plugins/taqyeem/taqyeem.php on line 611
Home / ওয়েব ডিজাইন / HTML5 এর কিছু Elements যে গুলো সব সময় প্রয়োজন

HTML5 এর কিছু Elements যে গুলো সব সময় প্রয়োজন

HTML-5

HTML এর সর্বশেষ ভার্সন হচ্ছে HTML5,  এইচটিএমএল ৫ এ এক্সএইচটিএমএল সকল নিয়ম অনুসরন করা হয়। কাজেই HTML 5 শিখলেই আগের ভার্সনগুলি অটোমেটিক শেখা হয়ে যাবে।

* W3C নামের এই সংস্থাটি HTML তৈরী এবং ম্যানেজমেন্ট করে।

তেমন কিছু Elements হল

  • <article>
  • <aside>
  • <details>
  • <figcaption>
  • <figure>
  • <footer>
  • <header>
  • <main>
  • <mark>
  • <nav>
  • <section>
  • <summary>
  • <time>

উদারহনঃ
১। section

<section>
      <h1>WWF</h1>
       <p>The World Wide Fund for Nature (WWF) is….</p>
</section>
২। article
<article>
   <header>
       <h1>What Does WWF Do?</h1>
       <p>WWF’s mission:</p>
   </header>
  <p>WWF’s mission is to stop the degradation of our planet’s natural environment,
  and build a future in which humans live in harmony with nature.</p>
</article>
৩। footer
<footer>
      <p>Posted by: Hege Refsnes</p>
      <p>Contact information: <a href=” “>
  someone@example.com</a>.</p>
</footer>
৪। nav
<nav>
    <a href=”/html/”>HTML</a>
    <a href=”/css/”>CSS</a>
    <a href=”/js/”>JavaScript</a>
   <a href=”/jquery/”>jQuery</a>
</nav>
৫। aside
<aside>
      <h4>Epcot Center</h4>
      <p>The Epcot Center is a theme park in Disney World, Florida.</p>
</aside>
৬। figure
<figure>
    <img src=”pic_mountain.jpg” alt=”The Pulpit Rock” width=”304″ height=”228″>
    <figcaption>Fig1. – The Pulpit Rock, Norway.</figcaption>
</figure>
৭। details
<details>
    <summary>Copyright 1999-2014.</summary>
    <p> – by Refsnes Data. All Rights Reserved.</p>
   <p>All content and graphics on this web site are the property of the company Refsnes Data.</p>
</details>
৮। header
<header>
      <h1>Most important heading here</h1>
      <h3>Less important heading here</h3>
     <p>Some additional information here</p>
  </header>

About Shahin

Check Also

html list

ওয়েব ডিজাইন Part-9( HTML list)

 HTML list: একটা ওয়েব পেজকে সুন্দর করে সাজানো এবং তথ্য উপস্থাপনার অন্যতম পদ্ধতি লিষ্ট । …