CSS Fonts
<!DOCTYPE html> <html> <head> <style> h1 { font-weight: 700; } .subtle { font-weight: 300; } </style> </head> <body> <h1>Dashboard</h1> <p class="subtle">Last updated a few seconds ago.</p> </body> </html>
<!DOCTYPE html> <html> <head> <style> h1 { font-weight: 700; } .subtle { font-weight: 300; } </style> </head> <body> <h1>Dashboard</h1> <p class="subtle">Last updated a few seconds ago.</p> </body> </html>