Monday, 23 May 2016

HTML Tutorial 1(BASIC STRUCTURE)

In this tutorial we will start with basic html page. For starters, they will first download XAMPP or WAMP from their official websites and extract files in to localdisk ( Let say LocalDisk C:).

    You can also download Editor(Dreamweaver or others) but you can also use notepad. First open notepad and save file tutorial1 (C:/xampp/htdocs). In htdocs folders place file tutorial1 with extension html(tutorial1.html).

    <!DOCTYPE html>
      <html>
         <body>
            <h1>Tutorial 1</h1>
         </body>
      </html>

Place the above code in tutorial1.html and save it. To run that code right click on file tutorail1.html and openwith any browser(prefer chorme).