running html in cmd code example
Example: running html in cmd
<!-- :
@echo off
mshta.exe "%~f0"
exit /b %errorlevel%
-->
<html>
<head>
<title>HTML IN CMD</title>
<!--meta http-equiv="X-UA-Compatible" content="IE=edge"-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"/>
</head>
<body>
<h1 class="text-primary"> Hello Wordl Using Bootstrap 4 </h1>
</body>
</html>