Source Code:
(back to article)
Submit
Result:
Report an issue
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
⌄
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>Title of the documnet</
title
>
<
style
>
p
{
font-size:
16
px
;
}
span
{
font-size:
19
px
;
}
</
style
>
</
head
>
<
body
>
<
p
>
This text is normal,
<
span
> and this text is bigger.</
span
>
</
p
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <title>Title of the documnet</title> <style> p { font-size: 16px; } span { font-size: 19px; } </style> </head> <body> <p> This text is normal, <span> and this text is bigger.</span> </p> </body> </html>