Today we go to learn first concept of html
I know that html has most important thing is right tag
Tag started with<tag> and the tag is close </tag>
As-here we right a html heading wich h1
<h1>and here are some element of
Html</h1>
Then we get output
and here are some element of Html
Because we tag h1 which mean heading
h1 is a high font-weight type heading and the other heading tag is use h2,h3,h4,h5,h6 which are low font-weight type heading
And we start writing document element in tag p which mean paragraph
As:-
<p font-style="italic">paragraph element</p>
Then we get output
Paragraph element
I use here font style so the output looking in this font.
Example:-
h1 is a high font-weight type heading and the other heading tag is use h2,h3,h4,h5,h6 which are low font-weight type heading
And we start writing document element in tag p which mean paragraph
As:-
<p font-style="italic">paragraph element</p>
Then we get output
Paragraph element
I use here font style so the output looking in this font.
Example:-
Then we get output
We have to write the css ino style tag
I use the css only for background color in the example.
How add a moving element in html
We use the marquee tag in html for moving element in html.
As we write
<marquee>Mohd Shareef Ansari</marquee>
How create a table in html
Here we goese to know how create a table in html doc
For make a table in html we use the table tag in the html code
The shown below for the table


Comments
Post a Comment