It isn't clear what web pages you mean at work. If your work place uses its own web site, then the web site administrator is the only one who can change the appearance and attributes of the web site.
The same goes for any web site on the internet. You cannot generally change how a web site displays because the HTML code is pre-set by the web site designer before it is downloaded to your browser. There are ways to change some aspects in some cases, but this is more advanced web site coding and depends if the web site is using a method called CSS, or Cascading Style Sheets.
But for your own web site, you need to know that the HTML follows rules, and usually, for any element that is started, there has to be an end element as well. For example, the code below is an example of what I would use for my own web site;
{Note, you would normally use < brackets > to enclose elements, but the Jive forum software used here may attempt to interpret those, so I have substituted them for ( brackets) }.
(html)
(head)
(title)Home(/title)
(/head)
(body bgcolor="#000000" text="#305C5B" link="#305C5B" vlink="#305C5B")
(center)
(br)(br)
(b)Image of the moment(br)(/font)
(br)
(img src="Images/Ice.jpg" width="400" heght="500" border="1")
(br)
(/center)
(/body)
(/html)
Notice that (html) must be the first tag in the code, and (/html) the last.
(head) and (/head), and (title) and (/title), are optional, although normally used.
(body) must have an end (/body) tag.
The (body bgcolor) shown in the example gives a black background. You can experiment with different Hex codes, (numbers and letters from 0-9 and A-F), as you wish.
A web site like http://catless.ncl.ac.uk/php/misc/colours.php will allow you to experiment with different combinations.
Instead of using (body bgcolor), you could, instead, create your own background image. This is usually a small square image that will repeat itself throughout the web page. For instance substituting (body bgcolor) above for (body background="back01.bmp") would repeat the image "back01.bmp" to make a seamless and continuous background.
That back01.bmp I created myself as a single color image in Paint.
What you type between the (body) <-----> (/body) tags becomes the content of the web page.
I hope that helps.
Mark
Was this reply helpful? (0) (0)
Staff pick