HTML Shortcuts
Let's Speed up HTML code in VSCode.
Hello everyone, in this blog we'll see some shortcuts to speed up your web development journy. Let's seeš¤©
1. h1+h2+p+btn
<h1></h1>
<h2></h2>
<p></p>
<button></button>
2. table>tr>td
<table>
<tr>
<td></td>
</tr>
</table>
3. table>tr>td^^ul>li
<table>
<tr>
<td></td>
</tr>
</table>
<ul>
<li></li>
</ul>
4. ul>li*3
<ul>
<li></li>
<li></li>
<li></li>
</ul>
This was the some shortcuts, that I liked to share with you.
Ā