Skip to content

Instantly share code, notes, and snippets.

@amardeep18
Created January 24, 2020 12:54
Show Gist options
  • Save amardeep18/03a79402b1f23c2e37ab3a429045bc4a to your computer and use it in GitHub Desktop.
Save amardeep18/03a79402b1f23c2e37ab3a429045bc4a to your computer and use it in GitHub Desktop.
<!doctype html>
<html lang="en">
<head>
<meta charset= "UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{{ title }}</title>
<link rel="stylesheet" href="css/reset.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/angular.min.js"></script>
<script src="js/script.js"></script>
<script>
function txt(x)
{
if(x==0)
document.getElementById("online").style.display="block",
document.getElementById("classroom").style.display="none",
document.getElementById("form1").style.display="block",
document.getElementById("form2").style.display="none";
else
document.getElementById("online").style.display="none",
document.getElementById("classroom").style.display="block",
document.getElementById("form1").style.display="none",
document.getElementById("form2").style.display="block";
return;
}
</script>
</head>
<body ng-app="myModule">
{{{ body }}}
</body>
<script src="js/jquery-1.9.1.min.js" type="text/javascript"></script>
<!-- jQuery easing plugin -->
<script src="js/jquery.easing.min.js" type="text/javascript"></script>
<script src="js/index.js"></script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment