HTML Editor

psaila

Member
Hi. I am in charge of my school's website. I used to use frontpage to update it however now we got the new office and frontpage is not included in it. Is there another program which is free and with which I can continue updating the site (in html). It has to be easy as I am not expert in this.

Thanks
 
I do not know html. In frontpage I just inserted pics and text and it created the html code alone. Is any of the proposed programs similar to this?

Thanks
 
I do not know html. In frontpage I just inserted pics and text and it created the html code alone. Is any of the proposed programs similar to this?

Thanks

You'd do much better to learn HTML and CSS. You're not going to be able to make anything worth looking at in a WYSIWYG editor.

However, as much as it pains me to say it, I heard Dreamweaver is perfect for people like you. It's not free though.
 
What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a href="http://www.carinsurancequotesinformation.com&quot;>car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.
Someone told me use DIV tags but how do i put this in HTML code?.
 
What is the html code to make horizontal boxes i need to make some boxes go from left to right but all i can find is on top of each other, you can see example here <a href="http://www.carinsurancequotesinformation.com&quot;>car insurance quotes</a> where the boxes are next to each other, and will this affect the page width on my site.
Someone told me use DIV tags but how do i put this in HTML code?.

Thread hijacker...

Anyway, the way I'd go about this is to put all your links in an unordered list, like this:
<ul class="classname">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>

Then style the li's like this to make them align horizontally:
.classname li {
float: left;
}
 
Thread hijacker...

Anyway, the way I'd go about this is to put all your links in an unordered list, like this:
<ul class="classname">
<li><a href=""></a></li>
<li><a href=""></a></li>
<li><a href=""></a></li>
</ul>

Then style the li's like this to make them align horizontally:
.classname li {
float: left;
}
Thank you ..
 
Back
Top