Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Easy question, need advice

Status
Not open for further replies.

mike314

Programmer
Jun 24, 2003
143
US
I have to put together a website, just wanted some advice, should I download an HTML editor and spend about 2 weeks just getting used to the environment or should I just use Notepad and write the HTML there?

can writting HTML in NotePad do the same graphics and visual stuff as an HTML editor?

Thanks
 
You can use notepad if you know HTML. You do not need an "HTML editor" - well Notepad is an HTML editor. As long as you know what you are doing, notepad wil do everything as far as coding. You can add the code for your images & javascript as well.

__________________________
Corey

 
You've got 3 options:
[ol]
[li]Stick with Notepad to write your raw HTML. Tedious but functional[/li]
[li]Use a "HTML Editor" which (to my mind) is still a text editor, but with bells and whistles added to automatically insert tags, validate your code, do other useful bits & pieces. This is how I build, using a tool called Notetab Pro.[/li]
[li]Use a WYSIWYG web design tool like Frontpage (spit) or Dreamweaver. These let you draw your designs on-screen and build all the HTML behind the scenes. The generated code is less efficient than the hand-crafted stuff though, sometimes dramatically so.[/li]
[/ol]
Whatever approach you take, the end result will be the same - an HTML file that can contain whatever "visual and graphic" instructions you need.

-- Chris Hunt
 
My piece of advice, learnt the hard way, is to use notepad to create your web, but go to the W3C validator early on, and validate your page frequently. THis will ensure you are writing correct code, making it more likely to display properly, and is also a good way to learn from your errors.

Don't do what I did and write over 100 oages before finding the validator and realising it was all junk!

Validator here:
Also good HTML / XHTML stuff here:
Good luck.
 
I use HTML-Kit by It colorizes your code and had a pop-up menu for quickly inserting code. There are also hundreds of plugins you can use to further customize the interface. Tidy is built-in for fixing broken code.

-Ron

-We all play from the same deck of cards, it's how we play the hand we are dealt which makes us who we are.
 
ok thanks guys for your tips, but quickly is the WYSIWYG format similar to MS Front Page? like as you type in plain text the HTML appears on another section. Is Dreamweaver or similar?

thanks again guys
 
WYSIWYG = What You See Is What You Get

Many editors perform this function. Basically, you design the page as you want it to look (similar to a word processor), and the editor writes the code for you.

Many purists (like myself) don't like using WYSIWYG editors because you generarlly don't get the finite control over the code that you get when you hand code.

No matter what anyone says, it's just a matter of personal preference (most of the time).

Of course, the extreme "never use" WYSIWYG editor is Microsoft Word. Yes, you can create web pages in Word, however the code that is generated is VERY bloated and full of useless junk. The pages are very inefficient.

If you decide to use a WYSIWYG editor, be sure to use one which doesn't add a bunch of proprietary code.

-Ron

-We all play from the same deck of cards, it's how we play the hand we are dealt which makes us who we are.
 
P.S. Yes, FrontPage is a WYSIWYG editor (though it's generally thought of as an amature platform and not recommended for professional web development).

-We all play from the same deck of cards, it's how we play the hand we are dealt which makes us who we are.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top