Zymic Forums

Webmaster resources

Zymic IRC Server

Chat in real time at irc.zymic.com - Learn More

Welcome

Welcome to the Zymic webmaster forums. Our forums are here to provide people the free ability to discuss a range of websites related topics such as design, development coding and marketing.

In order to post you will need to register for a zymic account or if you already have one simply login by using the form on the left.

left Zymic Webmaster ForumsWeb Design & DevelopmentClient Side ScriptingHTML and CSS right
  Closed Topic Start new topic
left right
underdeath
post Oct 21 2007, 05:54 AM
Post #1


Newbie
*

Group: Members
Posts: 9
Joined: 21-October 07
Member No.: 1,634



Im a real noob at HTML lol. sohow do i make a bac kground for my website page and have text and everything else over the top of it?
Go to the top of the page 
 
  + Quote Post
EMOruffino
post Oct 21 2007, 03:41 PM
Post #2


they call me ruffi
*******

Group: Moderators
Posts: 1,651
Joined: 19-September 07
From: Hell Paso
Member No.: 245



so im guessing you want a background picture?

This is the most basic of basic code here:
CODE
<body background="image_url_here.jpg">


Tho you should use a css.....

ALSO to put text in, just put the text within the body tags. need more help?
Go to the top of the page 
 
  + Quote Post
underdeath
post Oct 22 2007, 07:55 AM
Post #3


Newbie
*

Group: Members
Posts: 9
Joined: 21-October 07
Member No.: 1,634



thanks alot! but i have a new query. im using dreamweaver and i downloaded a template and i can see how theres a like an index on the leffthand side of the template to go to other pages on my website. can someone please explain how to when someone clicks on those links to go to another page on my website. it would be helpful if you told me how to do it using dreamweaver! thanks alot guys.
Go to the top of the page 
 
  + Quote Post
MrTouz
post Oct 22 2007, 06:21 PM
Post #4


Outrageously Uber Ninja
*******

Group: Members
Posts: 1,196
Joined: 19-September 07
Member No.: 234



Your First query :

I personaly think its not really good to use <body> to put your bg in it :/ why ? because its always better to use a style.css instead ! youll see once you coded your site style.css will be cool.

So create a new .css document... well go to notepade and than save as .css mostlikely style.css

once done put this into it :

CODE
body {
    background:#FFFFFF url(images/backgroundimage.gif) repeat;
}

(modify the image name and filetype)

ofcourse other atributes can be added... such as color, paddings.. margin..

Once saved smile.gif put this style.css next to your HTML pages smile.gif and inside ALL your html pages between the <head> </head> tag add this line of code :

CODE
<link rel="stylesheet" href="style.css" type="text/css" />


Your second query :

this is a link code :

CODE
<a href="http://www.google.com">Google Web Site</a>


so when you clic on this "Google Web Site it sends you to google.com. Simple ?
well you can than if you want add a target...
so lets say you want to have a link to open in a new window you just add the target="_blank" so :

CODE
<a href="http://www.google.com" target="_blank">Google Web Site</a>


you can put a iframe as a target.. as target="blabla" so lets say you had a :

CODE
<iframe name="blabla" width="400" height="400"></iframe>


inside a corner of your website... well once you clic on Google Web Site it will traget your google page inside the 400x400 iframe on the corner of your site smile.gif

you can add many things with a href smile.gif

HOPE IT HELPS smile.gif
Go to the top of the page 
 
  + Quote Post
Earpy
post Oct 22 2007, 09:51 PM
Post #5


Newbie
*

Group: Members
Posts: 27
Joined: 19-September 07
From: England, United Kingdom
Member No.: 121



Hello,

Although both of your questions have been answered very well by MrTouz and EMOruffino, I thought this post would help. Some very good tutorials that will get you started in HTML can be found at www.W3schools.com. That is where I started out, and even today when I get a little brain dead, I still refer to that site smile.gif Check it out sometime!

~ Earpy ~

Go to the top of the page 
 
  + Quote Post
underdeath
post Oct 22 2007, 10:14 PM
Post #6


Newbie
*

Group: Members
Posts: 9
Joined: 21-October 07
Member No.: 1,634



thankyou you very much for your help guys much appreciated!
Go to the top of the page 
 
  + Quote Post
EMOruffino
post Oct 23 2007, 01:11 AM
Post #7


they call me ruffi
*******

Group: Moderators
Posts: 1,651
Joined: 19-September 07
From: Hell Paso
Member No.: 245



QUOTE(underdeath @ Oct 22 2007, 05:14 PM) *
thankyou you very much for your help guys much appreciated!

anytime, and yes the CSS is the best as i did metion in my first post laugh.gif
Go to the top of the page 
 
  + Quote Post
MrTouz
post Oct 23 2007, 02:00 PM
Post #8


Outrageously Uber Ninja
*******

Group: Members
Posts: 1,196
Joined: 19-September 07
Member No.: 234



www.W3schools.com

very good place smile.gif i never went to the site dirrectly i just asked my best friend... GOOGLE for a code lets say

html coding link

and it alwyas give me a w3schools link smile.gif very nice site ! definitly suggested
Go to the top of the page 
 
  + Quote Post
IamShipon1988
post Oct 29 2007, 06:55 PM
Post #9


Outrageously Uber Ninja
*******

Group: Moderators
Posts: 1,562
Joined: 19-September 07
From: Rochester, NY
Member No.: 86



W3schools.com is a really good site, I would also recommend checking up on HTMLDog at http://htmldog.com/
They have very great references about html basics and advanced material, in addition to css.
Go to the top of the page 
 
  + Quote Post
 Closed Topic Start new topic
left right
0 Members:
left right
 


Lo-Fi Version Time is now: 19th May 2013 - 07:43 AM