Saturday, November 29, 2014

Starting with HTML

Setting up a website


To setup a website first we want to create a folder named with your site name.
Example: mysite, abcsite, “yourcompanyname”site.
Here we create a folder named mysite .

To create a folder in windows you can right click on desktop or any window and go to new-->New Folder and rename it as mysite or whatever you like.






Creating your first HTML document

Open a plain text editor like notepad,notepad++ or use a HTML Editor like microsoft visual web developer,macromedia dreameviewer to code HTML codes.Here I use my own notepad named “My Note”.You can type following codes in any text or HTML editor.But if you are a beginer to HTML Please use Text Editors to practice HTML.Let`s start.

<HTML>
<HEAD>
<TITLE>Title of your website</TITLE>
</HEAD>
<BODY>content goes here</BODY>
</HTML>

No comments:

Post a Comment