Created
March 14, 2024 10:02
-
-
Save fastfingertips/357baf20c90a045ebde48945e50d928a to your computer and use it in GitHub Desktop.
This HTML file demonstrates the use of responsive font size.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Responsive Font Size Example</title> | |
<style> | |
:root { | |
font-size: calc(1rem + 0.25vw); | |
} | |
body { | |
font-family: Arial, sans-serif; | |
margin: 0; | |
padding: 20px; | |
} | |
h1 { | |
font-size: 2rem; /* Or any other size you prefer */ | |
} | |
p { | |
line-height: 1.6; | |
margin-bottom: 20px; | |
} | |
/* Additional styles for responsiveness */ | |
@media (max-width: 768px) { | |
h1 { | |
font-size: 1.5rem; | |
} | |
} | |
@media (max-width: 576px) { | |
h1 { | |
font-size: 1.25rem; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<h1>This is a Heading</h1> | |
<p>This is a sample paragraph. The font size will adjust based on the viewport width.</p> | |
<p>Resize the browser window to see the font size change.</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment