HTML (8)
Comments <!--and -->
This is one type of textual content which appear in your html code but not rendered by Browser.
SAMPLE Comments
<!-- This a comment -->
<!-- This is a another,but a multiple line comment -->
Example ↓↓↓↓↓↓
<html>
<head>
<title>My page</title
</head>
<body>
<!-- This command will not be rendered by the browser -->
<p> sample text . This will be rendered </P>
</body>
</html>
Physical Text Style
- <B> = bold text
- <i> = Italic text
- <tt> =Typewriter text (Fixed-width font)
- <u> = underlined text
Example ↓↓↓↓↓↓
<html>
<head>
<title>My page</title>
</head>
<body>
<p> sample text <b>This is a bold text</b><i> This is a italic text</i><u> this is a underlined text</u><tt> left right </tt>
</body>
</html>
0 Comments