x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
h1 {
7
letter-spacing: 2px;
8
}
9
10
h2 {
11
letter-spacing: -3px;
12
}
13
</style>
14
</head>
15
16
<body>
17
<h1>This is heading 1</h1>
18
<h2>This is heading 2</h2>
19
</body>
20
</html>