I have downloaded a source code from Github. There is an error in home.component.html file. The error is associated with span element. The code is below:
<div class="product-info">
<h2 class="product-title h5 mb-0"><a href="#">Sleeve linen shirt</a></h2>
<span class="price">
<del>60<pre wp-pre-tag-5=""></pre>lt;/del>
$50.10
</span>
</div>
Someone, please let me know the fix here. I really appreciate it!
>Solution :
Your close tag for has lt; instead of <
<div class="product-info">
<h2 class="product-title h5 mb-0"><a href="#">Sleeve linen shirt</a></h2>
<span class="price">
<del>60<pre wp-pre-tag-5=""></pre></del> <!-- right here -->
$50.10
</span>
</div>