Code
Execute
<
!DOCTYPE
html
>
<
html
>
<
head
>
<
title
>
Wikitechy style tag
<
/title
>
<
style
>
h1
{
color
:
blue
;
}
p
{
font-size
:
38pt
;
color
:
red
;
}
<
/style
>
<
/head
>
<
body
>
<
h1
>
Welcome to Wikitechy
<
/h1
>
<
p
>
This is a paragraph with style.
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <head> <title>Wikitechy style tag</title> <style> h1{ color: blue; } p { font-size:38pt;color: red; } </style> </head> <body> <h1>Welcome to Wikitechy</h1> <p> This is a paragraph with style. </p> </body> </html>
Result