Font size - error

sir I written every thing correct but till not work

<!DOCTYPE html>
<html>
	<head>
		<title>First font size change</title>
	</head>
	<body>
		<p> <p style="font-size: 10px"> Some text for you to make tiny! </p>
		<p> <p style="font-size: 20px"> Some text for you to make normal size!</p>
		<p> <p style="font-size: 40px"> Some text for you to make super big!</p>
	</body>
</html>

This is how you add style to a code:

Take the original tag: <p> </p>
add in style=" " before >
(You don’t add the tag in again)

Example:

<p style="color: blue;"> my paragraph text </p>
1 Like

This topic was automatically closed after 3 days. New replies are no longer allowed.