Thanks to visit codestin.com
Credit goes to www.scribd.com

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

Program 1

The document is an HTML webpage that demonstrates the use of various basic HTML tags, including headings, paragraphs, block quotes, and preformatted text. It showcases logical styles such as strong, emphasized, code, sample output, keyboard input, variables, marked text, subscript, and superscript. The page also includes a marquee element for scrolling text.

Uploaded by

flytechi13579
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)
16 views1 page

Program 1

The document is an HTML webpage that demonstrates the use of various basic HTML tags, including headings, paragraphs, block quotes, and preformatted text. It showcases logical styles such as strong, emphasized, code, sample output, keyboard input, variables, marked text, subscript, and superscript. The page also includes a marquee element for scrolling text.

Uploaded by

flytechi13579
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
You are on page 1/ 1

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport", content="width=device-width, initial-scale=1.0">
<title>My First Web Page</title>
</head>
<body>
<marquee>Basic HTML Tags</marquee>

<h1>This is Heading 1</h1>


<h2>This is Heading 2</h2>
<h3>This is Heading 3</h3>
<h4>This is Heading 4</h4>
<h5>This is Heading 5</h5>
<h6>This is Heading 6</h6>

` <p>This is a paragraph. It demonstrates the use of the paragraph tag in HTML.


Paragraphs are used to group related content together.</p>

<hr>

<p>This line is before the line break.<br>This line is after the line
break.</p>

<blockquote>
This is a block quote. It's often used to highlight quoted text from
another source. Block quotes are typically indented to set them apart from the main
text.
</blockquote>

<pre>
This is preformatted text.
It preserves both spaces and
line breaks, which is useful
for displaying code or poetry </pre>

<p>Here are some examples of logical styles:</p>


<strong>This text is strong (typically bold).</strong><br>
<em>This text is emphasized (typically italicized).</em><br>
<code>This is some computer code.</code><br>
<samp>This is sample output from a computer program.</samp><br>
<kbd>This represents keyboard input.</kbd><br>
<var>This is a variable in a mathematical expression or programming
context.</var><br>
<mark>This text is marked or highlighted.</mark><br>
<sub>This is subscript text.</sub> and <sup>This is superscript text.</sup>
</body>
</html>

You might also like