mirror of
https://github.com/XAMPPRocky/tokei
synced 2024-10-30 07:11:48 +00:00
46 lines
864 B
HTML
46 lines
864 B
HTML
<!-- 46 lines 23 code 19 comments 4 blanks -->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title></title>
|
|
link
|
|
<style>
|
|
/*
|
|
|
|
CSS multi-line comment
|
|
|
|
*/
|
|
body {
|
|
background-color: pink;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
body
|
|
</body>
|
|
<!-- Normal Comment-->
|
|
|
|
<nav class="navbar navbar-default navbar-fixed-top navbar-custom">
|
|
<div id="modalSearch" class="modal fade" role="dialog"> </div>
|
|
</nav>
|
|
|
|
<!--
|
|
document.write("Multi-line and Code comment!");
|
|
//-->
|
|
|
|
<!--[if IE 8]>
|
|
IE Special comment
|
|
<![endif]-->
|
|
<script>
|
|
/*
|
|
|
|
Javascript multi-line comment
|
|
|
|
*/
|
|
let x = 5;
|
|
// Javascript single line comment
|
|
</script>
|
|
|
|
</html>
|