Skip to main content

Schema কি? (What is schema?)

HTML Tutorial

 

html tutorial bangla
HTML শিখুন 

HTML একটি standard markup language Web pages এর জন্য।

HTML দিয়ে নিজের Website বানাতে পারবেন। 

HTML শেখা অনেক সহজ। 


HTML কি ?

  • HTML মানে  Hyper Text Markup Language
  • HTML Web pages বানানোর জন্য একটি standard markup language
  • HTML Web page এর গঠন বর্ণনা করে।  
  • HTML বিভিন্ন elements এর সমন্বয়ে গঠিত।
  • HTML elements browser কে বলে দেয় Content কীভাবে প্রদর্শন করতে হবে।
  • HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.

A Simple HTML Document

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

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

</body>
</html>
Try it Yourself »
Please use w3school to get more idea about html and other markup language and many more. Use Try it yourself feature to get yourself prepare and get the clear understanding of the training materials. We always here to help you understand the process and the purpose of this site is to provide you all the information needed to start earning some money by contributing freelancing services. 

Comments

  1. Thank you so much brother for teaching us better then others. I have seen all of your youtube tutorials.

    ReplyDelete
  2. Best Seo Tips https://www.newspaperbangladesh.com/

    ReplyDelete
  3. Laundry Service Near Me are also being available. It is a matter of great joy that you don’t need to go to the shop yourself. In the online laundry service, you will just inform them and then they will pick up your clothes for wash and fold laundry service near me. After the work is done they will deliver your clothes to your own place. You will just have to pay the bill. If you are looking for a delivery launderettes provider near me online you are in the right place. This is the platform that will make your life hassle-free. This providing will save both your time and energy. We also provide at a cheaper rate. So meanwhile it also saves your money.

    ReplyDelete
  4. Thanks for this wonderful blog keep sharing your knowledge like this...
    HTML Training in Chennai
    Go Lang Training in Chennai

    ReplyDelete
  5. Our Website Link:: https://cutt.ly/IH9kWsf

    ReplyDelete
  6. Our Website Link:: https://developersajjad.blogspot.com/

    ReplyDelete

Post a Comment

Popular posts from this blog

SEO Questions and Answers

  Zahins SEO Questions and Answers  This website is all about training.  Zahins SEO Questions and Answers will help to prepare for SEO Exam. These are the common question and answer for SEO exam. I recommend doing some extra research before taking any exam. To success you need to get clear concept of everything. specially get a very good idea about all SEO sectors like On page Off page etc.    1.    What do you use to search for exact phrases in Google? A.    Hyphen (-) B.    Asterisk (*) C.    Quotation Marks (“) D.   Exclamation Point (!) Answer:  Option C   2.    Are RSS/Atom feeds returned in Google’s search results? A.    Yes B.    No Answer: Option B   3.    An HTML sitemap provides a list of internal links on a website accessible to users. A.    True B.    False Answer: Option A   4.    What is Anchor Text? A.    It is the main body of text on a particular web page B.    It is the text within the left or top panel of a web page C.    It is

Schema কি? (What is schema?)

Schema প্রতিষ্ঠিত হয়েছে Google, Microsoft, Yahoo and Yandex, Schema.org এর developer দের একটি গ্রুপের সমন্বয়য়ে। আর এটা হয়েছে GitHub এবং https://lists.w3.org/Archives/Public/public-schemaorg/ এর সমন্বয়ে। Internet, web pages, email messages সহ এবং এর বাইরে structured data কে promote করার জন্য।  তিন ধরনের encodings ব্যাবহার করে Schema লিখা যেতে পারে।  যেমনঃ ১। RDFa             ২। Microdata এবং             ৩। JSON-LD এই তিন টির মধ্যে JSON-LD Google Recommend করে।  যে সাইট টি দিয়ে আমরা এই code সম্পর্কে জানি তা হল Schema.org এছাড়াও আরও সাইট আছে যা দিয়ে এই code generate করা সম্ভব তার মধ্যে অন্যতম https://schemagenerator.net/ এছাড়াও Google Markup tools দিয়েও করা যেতে পারে।

How to fix search console coverage error for Cart, My Account, and Checkout

  Woocommerce adds a noindex tags to certain pages. For that we receive some error on search console. Yoast try add all page for indexing where woocommerce adds noindex that's the conflict we need to resolve. One way to remove this is not set those file as index but I don't recommended because we should not index cart, my account, checkout etc. better approach is to add some code to function.php The following code snippet should help remove Cart, My Account, and Checkout  for you: if ( ! function_exists( 'wd_remove_woo_pages_from_yoast_sitemap' ) ) { /** * If Woocommerce and Yoast are enabled, we need to prevent Yoast from showing My Account, Checkout, and Cart in the sitemap * * @param $exclusions_array * @author Nick Jeffers @ Websites Depot Inc * @since * @return array */ function wd_remove_woo_pages_from_yoast_sitemap( $exclusions_array ) { // make sure Woocommerce is enabled if ( function_exists( 'wooc