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
›
⌄
⌄
⌄
⌄
⌄
<!DOCTYPE html>
<
html
lang=
"en"
>
<
head
>
<
title
>Linear Gradient</
title
>
</
head
>
<
body
>
<
style
>
h1
{
font-size:
10
vw
;
/* make our h1 tag larger */
font-family:
sans-serif
;
/* choosing our font */
}
</
style
>
<
h1
>W3DOCS</
h1
>
</
body
>
</
html
>
<!DOCTYPE html> <html lang="en"> <head> <title>Linear Gradient</title> </head> <body> <style> h1 { font-size: 10vw; /* make our h1 tag larger */ font-family: sans-serif; /* choosing our font */ } </style> <h1>W3DOCS</h1> </body> </html>