Wednesday 26 July 2017

Basic

Devloper HTML
 Tim berners lee developed html
----------------------------------------------------------------------------------------------

Editer
Web pages can be created and modified by using professional HTML editors.
However, for learning HTML we recommend a simple text editor like Notepad.
We believe using a simple text editor is a good way to learn HTML.
--------------------------------------------------------------------------
HTML -- >Hyper Text Markup Language
--------------------------------------------------------------------------
HTML Structure


<html>
              <head>
                        <title>TITLE</title>
            </head>
      <body>
<h1>heading</h1>
<p>paragraph</p>
     </body>
</html>
---------------------------------------------------------------------
1) Example

<html>
<head>
<title>1</title>
</head>
<body>

<h1>top</h1>
<p>middel</p>

</body>
</html>
-------------------------------------------------------------

No comments:

Post a Comment