Bold and Italics

Topic

Bold and Italics

Topic Progress:

In this example you can see how we use the <b> tag and the <i> tag. The <b> tag makes text bold. The <i> tag makes text italic.

<!DOCTYPE html>
<html>
	<head>
		<title>Bold and Italics</title>
	</head>
	<body>
		<p>The <b>b</b> tag makes text <b>bold</b>.</p>
		<p>The <i>i</i> tag makes text <i>italic</i>.</p>
	</body>
</html>

Try it yourself!

@

Not recently active