Mac Webpage Software at DVinfo.net
DV Info Net

Go Back   DV Info Net > And Now, For Something Completely Different... > The TOTEM Poll: Totally Off Topic, Everything Media
Register FAQ Today's Posts Buyer's Guides

The TOTEM Poll: Totally Off Topic, Everything Media
Let's talk about anything media related.

Reply
 
Thread Tools Search this Thread
Old January 31st, 2004, 05:47 PM   #1
Major Player
 
Join Date: Sep 2003
Location: Colorado
Posts: 316
Mac Webpage Software

As a former PC user (still at work), I have no idea what the "big" program is that mac users design web pages with. I have worked with Frontpage in the past on PC, but now need something for my mac. I have looked at several different programs, but was wondering if you mac guys could give me some advice on which program you use and why? I will be using the software for personal applications only. Thanks much in advance...

Clay

P.S. If this is in the wrong place and should be with the DVD and Web delivery forum, please move.
__________________
I understand everything about nothing.
J. Clayton Stansberry is offline   Reply With Quote
Old January 31st, 2004, 06:05 PM   #2
Air China Pilot
 
Join Date: May 2002
Location: Vancouver, B.C.
Posts: 2,389
Start fresh. Learn HTML and CSS and use a text editor. :)
__________________
--
Visit http://www.KeithLoh.com | stuff about living in Vancouver | My Flickr photo gallery
Keith Loh is offline   Reply With Quote
Old January 31st, 2004, 06:07 PM   #3
Major Player
 
Join Date: Feb 2003
Location: HB, CA - USA
Posts: 298
You can use:

Adobe GoLive

or

Macromedia Dreamweaver
Aaron Rosen is offline   Reply With Quote
Old January 31st, 2004, 07:17 PM   #4
Air China Pilot
 
Join Date: May 2002
Location: Vancouver, B.C.
Posts: 2,389
Yeah, Aaron is right. Use Dreamweaver.

What I find I'm doing most often is designing in Illustrator, cleaning up and exporting to HTML and web images using ImageReady, and editing using Dreamweaver. :)
__________________
--
Visit http://www.KeithLoh.com | stuff about living in Vancouver | My Flickr photo gallery
Keith Loh is offline   Reply With Quote
Old January 31st, 2004, 07:43 PM   #5
Major Player
 
Join Date: Feb 2003
Location: HB, CA - USA
Posts: 298
You can also use Photoshop to design then export it in Image Ready to HTML and fix it all in GoLive.

Depends on what program you like best. I'm an Adobe fan so I use all their imaging products to make web stuff. Some people like Macromedia. It just depends on what program you like best and what it offers you that you need most.

Bottom line: dowload the trials to both and give them a spin. Buy what you like best.
Aaron Rosen is offline   Reply With Quote
Old January 31st, 2004, 08:01 PM   #6
Obstreperous Rex
 
Join Date: Jan 2001
Location: San Marcos, TX
Posts: 27,366
Images: 513
Clay, be sure to look into BBedit.
__________________
CH

Search DV Info Net | 20 years of DVi | ...Tuesday is Soylent Green Day!
Chris Hurd is offline   Reply With Quote
Old January 31st, 2004, 09:28 PM   #7
Trustee
 
Join Date: Oct 2001
Location: Chigasaki, Japan.
Posts: 1,660
I use Dreamweaver MX and recommend it highly. The MX version has a number of different interfaces you can choose from, I use the old Homesite one which gives you a very powerful text editor with buttons to automatically add code for almost anything you might need.

The other thing that makes Dreamweaver such a powerful HTML editor are the extension plug-ins. The Dreamweaver Exchange on Macromedia's website has hundreds of downloadable extensions to improve your workflow. The extensions are sometimes written by Macromedia but 90% are written by Dreamweaver users and are free to download. There are some you have to pay for but they are generally commercially developed extensions for creating dynamic content.
Adrian Douglas is offline   Reply With Quote
Old January 31st, 2004, 11:07 PM   #8
Major Player
 
Join Date: Aug 2003
Location: Canada
Posts: 224
For wysywyg Mac web design, Macromedia and Dreamweaver are Kings Of The Hill. Forget about Golive (extremely buggy and not as feature-filled). For good old pure source code editing and web design, BBEdit is Mother of It All.

Frontpage and Golive have a habit of writing a lot of dead proprietary code.
Kevin Lee is offline   Reply With Quote
Old February 1st, 2004, 12:40 PM   #9
Major Player
 
Join Date: Sep 2003
Location: Colorado
Posts: 316
Thanks for all the recommendations! I'll definately check them out.

Keith,

Being an extreme novice at web design, what is a text editor? I assume it is simply something that you can write code in and then publish it that way. Would it be possible to simply design something in Frontpage (that I already have on my PC) and copy the code from there, and enter it into a text editor on my mac? Is this feasible or am I just going around my elbow to get to my hand? I need a cheap way to just mess around with it not a $400-$500 program with all the bells and whistles. Thanks again...

Clay
__________________
I understand everything about nothing.
J. Clayton Stansberry is offline   Reply With Quote
Old February 1st, 2004, 12:51 PM   #10
Major Player
 
Join Date: Aug 2003
Location: Canada
Posts: 224
Try Netscape Composer (bundled with the free browser).
Kevin Lee is offline   Reply With Quote
Old February 1st, 2004, 12:56 PM   #11
Wrangler
 
Join Date: Dec 2002
Location: Mays Landing, NJ
Posts: 11,787
<<<-- Originally posted by Keith Loh : Start fresh. Learn HTML and CSS and use a text editor. :) -->>>

Works for me. I have built all my websites by hand coding html using the unix vi text editor which runs right on the server. You can also run it from the command line under OSX. This approach definitely isn't for everyone, but it suits my personal style...
Boyd Ostroff is offline   Reply With Quote
Old February 1st, 2004, 01:11 PM   #12
Air China Pilot
 
Join Date: May 2002
Location: Vancouver, B.C.
Posts: 2,389
<<<-- Originally posted by J. Clayton Stansberry :
Being an extreme novice at web design, what is a text editor?
-->>>

This is any program that will output just straight text such as Notepad on the PC - THE most basic text editor. Others have mentioned more advanced code editors like Homesite and BBEdit. Dreamweaver also has a built-in text editor.

HTML is just a page of text so anything that will output just straight text (note: NOT Word) can output a page that a web browser will understand. When you look at a web page and view source on it, it will just give you a page of text with a bunch of code. To edit that page, all you need to do is fool around with that page of code. To do that, you need to learn some basic HTML and, further on, .CSS. HTML is quite EASY.
example:
<html>
<body>
This is a web page.
</body>
</html>
There: a web page. You can open up Notepad (on a PC), paste everything between <hmtl></html>, save it as a .html file and drop it onto a web browser.

WYSIWYG editors such as Frontpage are for designers of which I am one. Basically, you use a graphic illustration program like Illustrator or Photoshop. Both of them have output modules that will create HTML pages out of the graphics. But to actually make them usable you have to go into the HTML that the programs spit out and edit the code. (never EVER use Microsoft Word to create a website)

Dreamweaver can take the HTML and graphics created by ImageReady/Photoshop/Illustrator and make it usable so you can edit them, add text, links, create a website hierarchy. But you can NEVER get away without knowing any HTML. Most of the time, I use Dreamweaver's code editing window to edit the HTML but occasionally I just want the basics and use Notepad.

.CSS is a markup language that works with HTML for large (or small websites) that make the maintenance easier. Some use them for layout as well as it is very powerful. The more you get into building websites the more you will want to look into this.
__________________
--
Visit http://www.KeithLoh.com | stuff about living in Vancouver | My Flickr photo gallery
Keith Loh is offline   Reply With Quote
Old February 1st, 2004, 01:23 PM   #13
Air China Pilot
 
Join Date: May 2002
Location: Vancouver, B.C.
Posts: 2,389
<<<-- Originally posted by Boyd Ostroff : <<<-- Originally posted by Keith Loh : Start fresh. Learn HTML and CSS and use a text editor. :) -->>>

Works for me. I have built all my websites by hand coding html using the unix vi text editor which runs right on the server. You can also run it from the command line under OSX. This approach definitely isn't for everyone, but it suits my personal style... -->>>

God, I remember VI from my university days. And I have to say, I can still remember the frustration of learning such a bizarre program. Sure, you can code almost everything in your text from your fonts to your formatting but I jumped for joy when they actually created WYSIWYG word processing programs. Writing something in VI is like Shakespeare having to carve his own writing quills and then mill his own paper before writing "To be or not to be".
__________________
--
Visit http://www.KeithLoh.com | stuff about living in Vancouver | My Flickr photo gallery
Keith Loh is offline   Reply With Quote
Old February 1st, 2004, 01:29 PM   #14
Air China Pilot
 
Join Date: May 2002
Location: Vancouver, B.C.
Posts: 2,389
<<<-- Originally posted by J. Clayton Stansberry : Would it be possible to simply design something in Frontpage (that I already have on my PC) and copy the code from there, and enter it into a text editor on my mac? -->>>

The Web is agnostic to platforms on that basic level so it wouldn't make sense for you to design something on Frontpage on the PC only to open it up on a text editor on the Mac. The page outputted by Frontpage will be the same page you open up on the text editor. You might as well just upload the page made by Frontpage. When I recommended a text editor, it's just because you will need to get into the code at some point, not just relying on the WYSIWYG aspect of Frontpage.

I guess the question we should be asking you is how you like building pages. Are you a graphic artist who wants to paint a pretty picture, hit a few buttons, and then upload the output to the web? Or are you more of a text-oriented person who wants to put up pages with lots of text and information? In my job I'm responsible both for designing and for maintaining. I find Dreamweaver has the proper balance for both these jobs.
__________________
--
Visit http://www.KeithLoh.com | stuff about living in Vancouver | My Flickr photo gallery
Keith Loh is offline   Reply With Quote
Old February 1st, 2004, 02:31 PM   #15
Wrangler
 
Join Date: Dec 2002
Location: Mays Landing, NJ
Posts: 11,787
<<<-- Originally posted by Keith Loh : Writing something in VI is like Shakespeare having to carve his own writing quills and then mill his own paper -->>>

I'm sure it would be for some people. But it's second nature to me, and there is a certain advantage to a completely character based interface. I never have to take my hands off the keyboard to pickup the mouse, never have to pull down a menu, etc. It's actually a very efficient way to hammer out lots of text if you're a touch typist.

But I certainly wouldn't recommend this for anyone unless they're already comfortable with vi. The only problem with the WYSIWYG web creation tools is that they generally write really inefficient, ugly, code. This isn't so much of an issue anymore with faster internet connections and computers. But hand-coded HTML is much more efficient and is more understandable if you need to look at it and figure out what it does.
Boyd Ostroff is offline   Reply
Reply

DV Info Net refers all where-to-buy and where-to-rent questions exclusively to these trusted full line dealers and rental houses...

B&H Photo Video
(866) 521-7381
New York, NY USA

Scan Computers Int. Ltd.
+44 0871-472-4747
Bolton, Lancashire UK


DV Info Net also encourages you to support local businesses and buy from an authorized dealer in your neighborhood.
  You are here: DV Info Net > And Now, For Something Completely Different... > The TOTEM Poll: Totally Off Topic, Everything Media


 



All times are GMT -6. The time now is 03:21 AM.


DV Info Net -- Real Names, Real People, Real Info!
1998-2024 The Digital Video Information Network