NOTEHighlights information that users should take into account, even when skimming.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Highlight.js Example</title>
<!-- Include Highlight.js from CDN -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/highlight.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.4.0/styles/github-dark.min.css">
<style>
/* Optional: Adjust styling for your page */
body {
font-family: Arial, sans-serif;
padding: 20px;
background-color: #1e1e1e; /* Adjust background color to match dark theme */
color: #ddd; /* Adjust text color for better readability */
}
pre {
padding: 10px;
background-color: #2d2d2d; /* Adjust background color to match dark theme */
border-radius: 5px;
overflow-x: auto;
}
</style>
</head>
<body>
<h1>Code Snippets with Highlight.js</h1>
<!-- Script to initialize Highlight.js -->
<script>
</script>
</body>
</html>