Your cart
  • IMG
    {{cart_item.name}}
    {{cart_item.variation_attribute_name}}: {{cart_item.variation_attribute_label}}
    {{cart_item.item_unit}}: {{ setCurrency(cart_item.price)}}
    {{ setCurrency(cart_item.price*cart_item.quantity)}}
    Invalid quantity more than stock
Total :
{{setCurrency(cart.sub_total)}}

There is no item in the cart. If you want to buy, Please click here.

HTML এ স্টাইল কিভাবে লিখে

এইচটিএমএল(HTML) টিউটোরিয়াল

Created by : mamun_1
HTML,CSS,Javascript
tutorial
Programming, Software and application
213
2020-10-03 12:17:22

HTML এ স্টাইল  কিভাবে লিখে 

যদি style ট্যাগের css ভেতর লিখতে চান তাহলে নিচের মত লিখতে হবেঃ

<style>

h6{ color: red;}

</style>


উদাহরন:

<html>

<head>

 <style>

 h6{

  color: red;

  }

 </style>

</head>

 <body>

  <h6>

I'm colorful heading.

  </h6>

 </body>

</html>