font-family
Define el tipo de letra.
1 | <!DOCTYPE html> |
2 | <html lang="es"> |
3 | <head> |
4 | <meta charset="UTF-8"> |
5 | <meta name="viewport" |
6 | content="width=device-width"> |
7 | <title>font-family</title> |
8 | <style> |
9 | h1 { |
10 | font-family: sans-serif |
11 | } |
12 | |
13 | p { |
14 | font-family: serif |
15 | } |
16 | </style> |
17 | </head> |
18 | <body> |
19 | <h1>font-family sans-serif</h1> |
20 | <p>font-family serif.</p> |
21 | </body> |
22 | </html> |