HTML <cite> for Work Title Explain
The HTML <cite> element defines the title of a work.
Browsers usually display <cite> elements in italic.
Html Code:
<!DOCTYPE html>
<html>
<body>
<p>The HTML cite element defines the title of a work.</p>
<p>Browsers usually display cite elements in italic.</p>
<img src="Daddyfile.jpg" width="400" height="225" alt="The Website Maker Html">
<p><cite>The Website Maker Html</cite> by Daddyfile.</p>
</body>
</html>
Html Code Result:
The HTML cite element defines the title of a work.
Browsers usually display cite elements in italic.
Browsers usually display cite elements in italic.
Post a Comment