how comments work in backend code example
Example: how do i comment with web development
<!DOCTYPE html>
</html>
<head>
<script>
//one line comment
/*
multiline comment*/
</script>
<style>
/*
multiline comment*/
</style>
</head>
<body>
<!-- multiline comment
-->
</body>
</html>