0
Can font size can be resize in Web page?
4 Answers
+ 1
yup, you need to use this CSS..
.fontresize{font-size:28px;}
now where you want to resize there use class attribute like this. class="fontresize"
example:
<HTML>
<head>
<style>
.fontresize{font-size:28px;}
</style>
</head>
<body>
<p class="fontresize">This is a Paragraph.</p>
</body>
</HTML>
+ 1
1. another way is to use inline CSS, inline CSS takes a higher precedence compared to external CSS file
2. use the size attribute with the font element, say <font size="6">YOUR TEXT HERE</font>
0
Use inline CSS
0
Yes definitely