Laidback.org

Writing Web Pages on Laidback.org

Writing basic web pages isn't all that hard. Here's a quick rundown on what's needed. Once you have your laidback.org account sorted out then you can start writing web pages. We'll start by looking at a basic one. One of the best ways to write web pages is to write them on your own machine and then transfer them to laidback.org. This way you can make sure that they look good before you send them (plus you can spell check). Once a web page is ready to send to laidback.org then have a look at the "Web Pages on Laidback.org" help sheet.

Let us begin ...


Hello


Hello, my name is Alice and I like to do origami. Here is a picture of a box I made. It's made out of lots of pieces all slotted together. You could make lots of them and make a mobile. The best paper for doing origami with is the small square-like origami paper. In England it's really expensive but in Japan it's really cheap. I also found some in the van gough museum in Amsterdam. I guess there just isn't the market for it here. Shame really but that's how it goes.
So, you see how the browser has made up this page (where and how things are). Well it's only done that because we have told it to do that. Let's have a look at the source html for that page.

<HTML>
<HEAD>
<TITLE>My page, by Alice</TITLE>
</HEAD>
<BODY>
<CENTER>
<H1>Hello</H1>  
</CENTER>
<IMG SRC="/images/c_box.gif" ALIGN=right><BR>
Hello, my name is Alice and I like to do origami.  Here is a picture of a 
box I made.  It's made out of lots of pieces all slotted together.  You 
could make lots of them and make a mobile.  The best paper for doing 
origami with is the small square-like origami paper.  In England it's 
really expensive but in Japan it's really cheap.  I also found some in 
the van gough museum in Amsterdam.  I guess there just isn't the market 
for it here.  Shame really but that's how it goes.
</BODY>
</HTML>

The first thing to notice is the funny <HTML> thing at the top. That's a "tag", something that tells the browser how to show your page. The <HTML> tag tells the browser that what's coming is html (actually most browsers don't need this anymore but it doesn't do any harm). As you can see, at the bottom of the page there is another tag that looks very similar to the first one: </HTML>. This kind of closes the tag, so anything in between these two tags is html.

There are all kinds of tags for different things, here are just a few:

You may have noticed that there is a head section and a body section to the page. That is all about where you put things. In the head tag there is a tag for "title". In there is information that will go in the very top bar of the web browser. Have a look now, it should say "Laidback Web Pages". That's because the title tag for this page said that.

Other sources of reference


If you have any trouble writing web pages or want suggestions then email
webmaster@laidback.org
and someone will try and help...