0% found this document useful (0 votes)
10 views1 page

HTML Nested Elements Guide

This HTML document contains a heading nested with italic text and a paragraph nested with underlined text. The heading "This is italic heading" contains italic text. The paragraph "This is underlined paragraph" contains underlined text. Both the heading and paragraph are displayed in the body of the document.

Uploaded by

marc0123456
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views1 page

HTML Nested Elements Guide

This HTML document contains a heading nested with italic text and a paragraph nested with underlined text. The heading "This is italic heading" contains italic text. The paragraph "This is underlined paragraph" contains underlined text. Both the heading and paragraph are displayed in the body of the document.

Uploaded by

marc0123456
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

<!

DOCTYPE html>
<html>
<head>
<title>Nested Elements Example</title>
</head>
<body>
<h1>This is <i>italic</i> heading</h1>
<p>This is <u>underlined</u> paragraph</p>
</body>
</html>

You might also like