1<!-- Answer to: "html special characters" -->
2
3!
4!
5[
6[ [
7_
8_
9`
10` `
11|
12| | |
13}
14} }
15¢
16¢
17<!-- There's many more at https://dev.w3.org/html5/html-author/charref -->
1Special Characters
2\n
3New line
4\r
5Carriage return
6\t
7Tab
8\v
9Vertical tab
10\f
11Form feed
12\xxx
13Octal character xxx
14\xhh
15Hex character hh
1<!DOCTYPE html>
2<html>
3<head>
4<style>
5.classname {
6 background-color: green;
7 color: white;
8}
9#idname {
10 background-color: pink;
11 color: white;
12}
13</style>
14</head>
15<body>
16<div class="classname">I am green colour<div>
17<div id="idname">I am pink colour</div>
18</body>
19</html>
20