HTML Boilerplate:
this is the basic html boilerplate<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
</body>
</html>
Order tag
this is the basic order list tag<ol>
<li>Hello</li>
<li>Life</li>
<li>Make</li>
<li>Easy</li>
<li>Just copy</li>
<li>Me</li>
</ol>
unorder tag
this is the basic order list tag<ul>
<li>Hello</li>
<li>Life</li>
</ul>
Js variable
this is the basic html boilerplatevar i = 45;
Js new variable
this is the basic html boilerplatelet i = 85;
Js constant variable
this is the basic constant variableconst i = 125;
Marquee Tag
move text with direction<marquee behavior="slow" direction="right"><h1>this is h1 heading</h1></marquee>