Saturday, September 19, 2015

HTML5 Tutorial For Beginners 5 # HTML Headers , Paragraphs and text Form...

7:13 AM









<!DOCTYPE HTML>
<html>
<head>
<title>My HTML</title>
<meta name="description" content="HTML5 Tutorial For Beginners . Basic Structure of HTML Page.">
<meta name="keywords" content="HTML, Htmal5, Tutorials, CSS, XML, XHTML, JavaScript">
<meta name="auther" content="Auther name">
<meta name="robot" content="index,follow">

</head>
<body>
<h1>heading 1 text</h1>
<h2>heading 2 text</h2>
<h3>heading 3 text</h3>
<h4>heading 4 text</h4>
<h5>heading 5 text</h5>
<h6>heading 6 text</h6>


<p>
/* Hello World program */

#include<stdio.h>

main()
{
printf("Hello World");

}
</p>

<pre>
/* Hello World program */

#include<stdio.h>

main()
{
printf("Hello World");

}
</pre>


<p><b>This is bold text</b>.</p>
<p><em>This is emphasized text</em>.</p>
<p><i>This is italic text</i>.</p>
<p><strong>This is strong text</strong>.</p>
<p>This is <small>Small</small> text.</p>
<p>This is <del>deleted text</del>.</p>
<p><ins>This is inserted text</ins>.</p>
<p>This is <sub>subscripted</sub> text.</p>
<p>This is <mark>marked</mark> text.</p>
<p>This is <sup>superscripted</sup> text.</p>

</body>
</html>




OUTPUT:

heading 1 text

heading 2 text

heading 3 text

heading 4 text

heading 5 text
heading 6 text
/* Hello World program */ #include main() { printf("Hello World"); }
/* Hello World program */

#include

main()
{
printf("Hello World");

}
This is bold text.
This is emphasized text.
This is italic text.
This is strong text.
This is Small text.
This is
deleted text.
This is inserted text.
This is subscripted text.
This is marked text.
This is superscripted text.










Searches related to html format text
text textbox
html text formatter
html text formatting tags
how to make text bold in html
basic html formatting
html bold
how do you bold text
how do you bold in html
Searches related to html paragraph
define a paragraph html
paragraph space
heading paragraph
paragraph break html
line break html
html new line tag
next line in html
html change line

Written by

We are one of the initiators of the development of information technology in understanding the need for a solution that is familiar and close to us.

0 comments:

Post a Comment

 

© 2013 Klick Dev. All rights resevered.

Back To Top