|
Posted by Adrienne Boswell on 11/23/90 11:43
Gazing into my crystal ball I observed rich <no@email.please> writing in
news:1e58d$442780e3$45289d12$26206@ALLTEL.NET:
> Looks like mostly coder questions here but...
>
> I'm looking for a free WYSIWYG website design IDE. I want to get basic
> sites up quick then add code as needed. Must come with lots of styles
or
> templates with good graphics. I don't want to be drawing pictures all
> day, just bang together a good looking basic site.
>
> What's your choice.
>
If you want a good looking basic site, you're better off handcoding it.
Make one page first using document level CSS, then when you're satisfied
with that, remove the CSS to an external stylesheet that you will use for
the entire site. Save that document as a template. If you have some
sort of server side include available, use that, or if not, use a
preprocessor.
<body>
<!-- Use the following as an include -->
<div id="header">
<!-- Your header content, logo, etc. -->
</div>
<div id="menu">
<ul>
<li><a href="index.html">Home</a></li>
....
</ul>
</div>
<!-- End include -->
<div id="content">
<h1>Page Title</h1>
<!-- Page content -->
</div>
<!-- Use the following as an include -->
<div id="footer">
<!-- Your footer content, copyright, etc. -->
</div>
<!-- End include -->
</body>
--
Adrienne Boswell
Please respond to the group so others can share
Navigation:
[Reply to this message]
|