1h1 {
2 text-decoration: overline;
3}
4
5h2 {
6 text-decoration: line-through;
7}
8
9h3 {
10 text-decoration: underline;
11}
12
13h4 {
14 text-decoration: underline overline;
15}
1.p1{
2 text-decoration: underline;
3}
4.p2{
5 text-decoration: underline red wavy;
6}
7.p3{
8 text-decoration: overline blue dotted;
9}
10.p4{
11 text-decoration: line-through;
12}
13.p5{
14 text-decoration: underline overline;
15}