• Saturday, February 18, 2012
February 18, 2012, 10:00:39 PM *
Welcome, Guest. Please login or register.

Login with your Chronicle username and password
News: Talk about how to cope with chronic illness, disability, and other health issues in the academic workplace.
 
Pages: [1] 2
  Print  
Author Topic: REALLY simple HTML editing software?  (Read 7347 times)
kohelet
Senior member
****
Posts: 613


« on: May 04, 2009, 05:51:58 AM »

I'm sure this question is incredibly basic to anyone who knows anything about this, but I can't figure it out.  I frequently write very simple HTML code to make webpages for my online course (and for some other stuff, like maintaining a list of internship opportunities, etc.).  My current process:  1) Write in notepad, 2) save with .html suffix, 3) open in a browser, 4) see everything I need to fix, 5) repeat until it's right.

This is really cumbersome.  My dream program:  I write HTML in the left pane, and the webpage displays in the right frame.  (Or, on second thought, something like this board--I type here, and then I hit the "preview" button to check it out.)

Does this exist?

Thanks.
Logged
bacardiandlime
Ninja
Distinguished Senior Member
*****
Posts: 3,144

That makes me more gangster than you


WWW
« Reply #1 on: May 04, 2009, 05:58:44 AM »

TACO and KompoZer for mac will both do what you want. Taco used to be free but now have to pay (not much), and KompoZer - at least a basic version - is a free download.
Logged

neutralname
A person without qualities, except for being a
Member-Moderator
Distinguished Senior Member
*****
Posts: 5,429


« Reply #2 on: May 04, 2009, 06:13:49 AM »

If the HTML code is really very simple, then why not edit the HTML file itself, using HTML code?  It's easy to do links, quote functions, font and font size, and simple pictures.  I guess that you actually want more than that.

But my main thought is that I'm not sure you will be able to avoid the iterative process you already do, even with a software program.  Especially if you want it to look basically the same in most browsers: IE, Firefox, Opera, etc.  I find that no matter how much a program promises to give you WYSIWYG, formatting nearly always screws up and you go back and correct it.  If you are copying and pasting part of another document in Word, then forgeddaboutit, you will definitely have to go back and forth several times until it looks right. 
Logged

"My loathings are simple: stupidity, oppression, crime, cruelty, soft music." Vladimir Nabokov
kohelet
Senior member
****
Posts: 613


« Reply #3 on: May 04, 2009, 06:42:19 AM »

If the HTML code is really very simple, then why not edit the HTML file itself, using HTML code?  It's easy to do links, quote functions, font and font size, and simple pictures.  I guess that you actually want more than that. 

Maybe I'm not using the vocabulary correctly, but this is what I do now.  In other words, I type out everything with all the HTML tags in notepad.  But, no, I don't want more than that--no dreamweaver or whatever--I just want to type out my HTML code and see the pretty (and simple) web version pop up in a window beside it.

If could do the "View > source" from inside my browser, and then edit and save the source code, I'd be set, but I don't see how to do that in Firefox, at least.

And, FOR SURE, I don't want to use the MS Word "WYSIWYG" editor, because of all the HTML junk it puts in there.

Thanks, b'lime, but I'm on PC.  I do like free, though!
Logged
dr_strangelove
Distinguished Senior Member
*****
Posts: 1,590

Get me my shoes.


« Reply #4 on: May 04, 2009, 09:05:43 AM »

I'm on a Mac too (I use BBEdit for this), but did you try some googling? Aa quick search turns up, e.g. CoffeeCup, which looks like what you're looking for.
Logged

I have an inbox?
kohelet
Senior member
****
Posts: 613


« Reply #5 on: May 04, 2009, 09:16:02 AM »

I did, but I keep finding jargon I don't know (CSS?).  This one does look promising, though, thanks!
Logged
namazu
Un-
Distinguished Senior Member
*****
Posts: 7,246


« Reply #6 on: May 04, 2009, 09:22:34 AM »

CSS = cascading style sheets.

These are instructions you set up to apply a uniform set of styles (i.e., fonts, colors, positioning) to documents.  You can set them up as separate files and then "call" them from individual HTML pages so that you don't have to re-invent the wheel every time.  And if you decide to change something, you can edit the stylesheet and then it will apply to all HTML pages that use the style sheet -- that way, you don't have to edit them one-by-one.  Some users with disabilities can opt to swap in their own style sheets with, say, large font sizes and high contrast in colors.  On the other hand, using them adds to the learning curve.
Logged
zuzu_
Frakking
Distinguished Senior Member
*****
Posts: 3,384


« Reply #7 on: May 04, 2009, 09:30:48 AM »

Microsoft Frontpage.

It's similar to Word. You make a page like you would create a word document, then you select the text and convert it to "code," and then you copy the coded text where you want it.

It's comes from Office 2003. Your college IT dept. has it and can put it on your computer.
Logged
dr_strangelove
Distinguished Senior Member
*****
Posts: 1,590

Get me my shoes.


« Reply #8 on: May 04, 2009, 09:41:15 AM »

Chime to what namazu said about CSS. But I would also add that if you're hand-coding web pages, you should know what CSS is and how to use it (and you should use it). I think I used this tutorial to learn about CSS.
Logged

I have an inbox?
neutralname
A person without qualities, except for being a
Member-Moderator
Distinguished Senior Member
*****
Posts: 5,429


« Reply #9 on: May 04, 2009, 09:43:25 AM »

My experience is Microsoft programs in creating web pages is that they introduce way too much bizarre code that is often not very compatible with other programs and web browsers.  I know that programmers put up garlic and crosses when Microsoft is mentioned. 

With MS Word, the "Save As Web Page, Filtered" helps to get rid of much of that code though, and I use that very often. 
Logged

"My loathings are simple: stupidity, oppression, crime, cruelty, soft music." Vladimir Nabokov
kohelet
Senior member
****
Posts: 613


« Reply #10 on: May 04, 2009, 09:47:30 AM »

Ummm ... nevermind.  I just figured out that I can do just what I want in IE, just not in Firefox.  (I had just assumed Firefox can do everything IE can.)  I can open something I've started in notepad via view>source, edit it, save it, hit refresh in the browser, and see the changes.  Really, for what I'm doing, this is super.  Thanks, all.

[neutralname, on preview: Yes--I've had the same problems with MS Office, so I've sworn off that route (after wasting a LOT of time designing an unnecessarily slick page that I couldn't get to open in Firefox).]
Logged
namazu
Un-
Distinguished Senior Member
*****
Posts: 7,246


« Reply #11 on: May 04, 2009, 09:52:41 AM »

Ummm ... nevermind.  I just figured out that I can do just what I want in IE, just not in Firefox.  (I had just assumed Firefox can do everything IE can.)  I can open something I've started in notepad via view>source, edit it, save it, hit refresh in the browser, and see the changes.  Really, for what I'm doing, this is super.  Thanks, all.

[neutralname, on preview: Yes--I've had the same problems with MS Office, so I've sworn off that route (after wasting a LOT of time designing an unnecessarily slick page that I couldn't get to open in Firefox).]
Kohelet, I edit HTML using Wordpad (like notepad, but with lines on the icon), and do approximately the same thing - type the file path in the address bar of Firefox and hit refresh after saving.  Works fine for me. And then before I post, I check it in IE, too.

Wait... I'm not sure how what you're doing now is different from what you were doing before...what makes this easier?
« Last Edit: May 04, 2009, 09:53:50 AM by namazu » Logged
kohelet
Senior member
****
Posts: 613


« Reply #12 on: May 04, 2009, 10:04:00 AM »

It's kind of hard to explain.  When I do this in notepad, I can't just hit save--that just saves it to .txt, so then I have to do "save as," file type>all files, add the .html suffix manually, get the "already exists, replace file?" warning, click "yes," and THEN I can refresh the browser to see the changes I've made.  I know it sounds whiny (and, well, it is, so yay for anonymity), but it gets aggravating when you need to make a string of changes.  I couldn't get wordpad to save to .html at all (no "all files" in the "save as" drop-down menu).

For whatever reason, when I open the source from inside of IE, while it does open in notepad, when I click "save," it saves to the same .html file, and I can hit refresh in the browser.  Two clicks instead of six plus some typing.

Back to easy html editing ...
Logged
namazu
Un-
Distinguished Senior Member
*****
Posts: 7,246


« Reply #13 on: May 04, 2009, 10:58:53 AM »

Ah, got it.  Not "whiny", just "efficient".  Glad you found a way to make things go more smoothly!
Logged
sporosarcina
Member
***
Posts: 105


« Reply #14 on: May 04, 2009, 02:37:31 PM »

I would go with Kompozer.  It is a free download (unlike all MS and adobe products) and has almost all the functionality of Frontpage (which has be converted to Expression Web I think).  The WYSIWYG window has a code tab which allows on the fly tag editing and the fine control you are looking for, but frankly you will probably just stick to the WYSIWIG editor functions. 
Logged

Please chalk up mistakes in spelling to my big fingers being married to small keyboards.
Pages: [1] 2
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.9 | SMF © 2006-2008, Simple Machines LLC Valid XHTML 1.0! Valid CSS!