I want to make a page that will keep the picture in the background.
Any help would be cool this is an example of what I want to do.
Please list any programs needed.
http://www.mosdefmusic.com/
+ Reply to Thread
Results 1 to 9 of 9
-
-
This is from Frontpage 2003
Set your picture as background - then look at the code below paying attention to the style="background-attachment: fixed"
<body topmargin="0" leftmargin="10" rightmargin="10" bottommargin="5" style="background-attachment: fixed"><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td> -
Easiest thing to do. Put this in the style sheet:
body { background-image: url('image name') no-repeat fixed center; }His name was MackemX
What kind of a man are you? The guy is unconscious in a coma and you don't have the guts to kiss his girlfriend? -
Originally Posted by mikayd
http://www.coffeecup.com/free-editor/ -
I will need a littile mor help lol I dont even know where to start I am a flash man. Html is hard to me. is there an totruial or something thabks I will try what you guys said peace. I dont know hpw to make html code. lol
-
I will need a little more help lol I don't even know where to start I am a flash man. Html is hard to me. is there an tutorial or something thanks I will try what you guys said peace. I dont know how to make html code. lol
Thank you I love all of you -
Here's a template for a simple page with just unformatted text and background image:
<html>
<head>
<title>Title of your page</title>
</head>
<body background="path or web directory/image.jpg">
Your text</p>
</body>
</html>
Here the image should be either big enough to be not repeated or it can be a texture sample, then it will fill the page by repeating itself. Save a text file beginning with '<html>' tag and give it .htm or .html extension. To preview in IE, the image path should correctly point to a file on your system or you can use a url of any image from the web (when you are connected to internet).
Also visit the page for tutorial:
http://www.ncsu.edu/it/edu/html_trng/html_basics.html -
To use the code provided by conquest which will work exactly like that page you linked to use this:
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Your Title</title> <style type="text/css"> body { background-image: url(http://www.yoursite.com/yourimage.gif) no-repeat fixed center; } </style> </head> <body> </body> </html>
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Your Title</title> </head> <body style="background-image: url(http://www.yoursite.com/yourimage.gif) no-repeat fixed center;"> </body> </html>
Code:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Your Title</title> <link rel="stylesheet" href="http://www.yoursite.com/external.css" type="text/css"> </style> </head> <body> </body> </html>
Code:body { background-image: url(http://www.yoursite.com/yourimage.gif) no-repeat fixed center; }
HTML tutorials can be found here:
http://www.w3schools.com/html/default.asp
CSS tutorials here:
http://www.w3schools.com/css/default.asp
Similar Threads
-
web page translator and email full page translator
By juststarting in forum ComputerReplies: 3Last Post: 1st Feb 2010, 09:23 -
DLC.html
By Hangrumps in forum Video ConversionReplies: 4Last Post: 15th Jul 2009, 15:00 -
html help
By steve42069 in forum ComputerReplies: 4Last Post: 8th Aug 2008, 10:38 -
HTML Help
By FEEL in forum ProgrammingReplies: 3Last Post: 20th Aug 2007, 08:58 -
html in forum
By Ogilvy in forum FeedbackReplies: 4Last Post: 13th Jul 2007, 18:30