How can I add a heading to my timer code?

Hi this is my timer code and I wanna add at him heading, write some text, because now its showing just the numbers.

{% capture time_check %}
{% for tag in product.tags %}
{%if tag contains 'Time_' %}
{% assign tag_time = tag | split : 'Time_' | last %}
{{ tag_time }}
{% endif %}
{%  endfor %}
{% endcapture %}
{% if tag_time %}

  

    

      00
      Days
    

    
      00
      Hours
    

    
      00
      Minutes
    

    
      00
      Seconds

To add a heading or text above the timer, you can simply include an HTML element before the countdown_time div. Here’s an updated version of your code with a heading added:

{% capture time_check %}
  {% for tag in product.tags %}
    {% if tag contains 'Time_' %}
      {% assign tag_time = tag | split: 'Time_' | last %}
      {{ tag_time }}
    {% endif %}
  {% endfor %}
{% endcapture %}

{% if tag_time %}
  ## Countdown Timer
  
    

      

        00
        Days
      

      
        00
        Hours
      

      
        00
        Minutes
      

      
        00
        Seconds
      

    

  

{% endif %}

@NomtechSolution

It’s working but I wanna add heading inside trhe box of my counter, now shows below the box timer.