An example HTML file to demonstrate source code highlighting.
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Example HTML Code</title> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
</head> | |
<body> | |
<div class="obnoxious">Blam!</div> | |
</body> | |
</html> |
.obnoxious { | |
font-weight: bold; | |
font-size: 42px; | |
color: #FF0000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment