x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
h1 {
7
text-decoration: overline;
8
}
9
10
h2 {
11
text-decoration: line-through;
12
}
13
14
h3 {
15
text-decoration: underline;
16
}
17
</style>
18
</head>
19
20
<body>
21
<h1>This is heading 1</h1>
22
<h2>This is heading 2</h2>
23
<h3>This is heading 3</h3>
24
</body>
25
26
</html>