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
›
⌄
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
>
<
head
>
<
title
>Titre du document</
title
>
<
style
>
p
{
font-size:
16
px
;
}
span
{
font-size:
19
px
;
}
</
style
>
</
head
>
<
body
>
<
p
> C'est un texte normal, <
span
> et ce texte est plus grand.</
span
></
p
>
</
body
>
</
html
>
<!DOCTYPE html> <html> <head> <title>Titre du document</title> <style> p { font-size: 16px; } span { font-size: 19px; } </style> </head> <body> <p> C'est un texte normal, <span> et ce texte est plus grand.</span></p> </body> </html>