I want to upload a link of download in a folder in my website but i do not know what is the html code of making a folder or folder tree. plz help me. You can also tell me the link whr i can find it.
What is the html code of putting folder in my website?
You can create a new folder in your local site by right clicking. From there you can FTP it onto your server.
birthday cards
Monday, May 24, 2010
How do you adjust the input size in html code?
I have set up an autoresponder at one of my sites, but i want to enlarge the input size of one of the boxes to accept large submission articles. Any suggestions?
How do you adjust the input size in html code?
I'm not following exactly how your site is set up. If you have set up a text area for text to be typed or pasted, here is the code:
%26lt;TEXTAREA NAME="comment" ROWS=6 COLS=40%26gt;
%26lt;/TEXTAREA%26gt;
Adjust the ROWS and COLS to match your need. Also, see if there is any scripting that limits the max length or size that needs to be adjusted.
Good luck!
Reply:http://www.devguru.com/technologies/html...
use textarea as an input field
Reply:Textareas don't have any limit to the number of characters they will accept. So even though it might not be visible in the form component, the text should be submitted okay.
Not sure if you're using a textarea element or not - I think we need more info actually.
Joyce
http://www.designbyjoyce.com/
Reply:You can specify the size of your INPUT box by changing the SIZE value. The value you specify within your SIZE attribute will determine the width of your input box within your web page form
ie: %26lt;INPUT type="text" SIZE="10"%26gt;
How do you adjust the input size in html code?
I'm not following exactly how your site is set up. If you have set up a text area for text to be typed or pasted, here is the code:
%26lt;TEXTAREA NAME="comment" ROWS=6 COLS=40%26gt;
%26lt;/TEXTAREA%26gt;
Adjust the ROWS and COLS to match your need. Also, see if there is any scripting that limits the max length or size that needs to be adjusted.
Good luck!
Reply:http://www.devguru.com/technologies/html...
use textarea as an input field
Reply:Textareas don't have any limit to the number of characters they will accept. So even though it might not be visible in the form component, the text should be submitted okay.
Not sure if you're using a textarea element or not - I think we need more info actually.
Joyce
http://www.designbyjoyce.com/
Reply:You can specify the size of your INPUT box by changing the SIZE value. The value you specify within your SIZE attribute will determine the width of your input box within your web page form
ie: %26lt;INPUT type="text" SIZE="10"%26gt;
What website can I use to get an HTML code for music, not music videos?
I would like it to autostart. The song in particular I am looking for is "All These Things That I've Done" by The Killers.
What website can I use to get an HTML code for music, not music videos?
You could make a mp3 playlist from one of these websites...
myflashfetish.com
projectplaylist.com
Just create a free account, pick a playlist skin, search for some mp3's %26amp; add them to your playlist then save it %26amp; copy the code %26amp; paste it on your profile.
What website can I use to get an HTML code for music, not music videos?
You could make a mp3 playlist from one of these websites...
myflashfetish.com
projectplaylist.com
Just create a free account, pick a playlist skin, search for some mp3's %26amp; add them to your playlist then save it %26amp; copy the code %26amp; paste it on your profile.
How can I make an online Jeopardy board using HTML?
I am trying to make a Jeopardy board to function on a website. Is there any way that I can do this with HTML?? I cannot use flash, or anything else. I am mostly working with frontpage, but if I can get the code to do it, that would be great. I have everything worked out with hyperlinks right now, but I need help with the board itself.
My problem is that I can't figure out how to make the value buttons to disappear after they've been clicked and I return to the homepage. (for example, the $100 question in the first category is picked. I click the value button and it hyperlinks to a new page. I then have a back to the board hyperlink, at which point I want the already clicked buttons to be invisible when I go back to the homepage from the questions.)
Does anyone have any idea how to do this??
How can I make an online Jeopardy board using HTML?
Use javascript to hide and unhide buttons based on variable values stored within the code.
To make these values available throughout the pages, load your site in frames and make one frame hold all the variables while in the other frams let the HTML pages load and unload as ususal.
Let me know if you need any further help.
My problem is that I can't figure out how to make the value buttons to disappear after they've been clicked and I return to the homepage. (for example, the $100 question in the first category is picked. I click the value button and it hyperlinks to a new page. I then have a back to the board hyperlink, at which point I want the already clicked buttons to be invisible when I go back to the homepage from the questions.)
Does anyone have any idea how to do this??
How can I make an online Jeopardy board using HTML?
Use javascript to hide and unhide buttons based on variable values stored within the code.
To make these values available throughout the pages, load your site in frames and make one frame hold all the variables while in the other frams let the HTML pages load and unload as ususal.
Let me know if you need any further help.
How do you add an indent to an html code?
I'm trying to make a web page but I've yet to learn how to make indents. And I want to get this site up soon%26gt; It's mostly indenting what people say like in a fanfic, so could some one help me out?
How do you add an indent to an html code?
Load the HTML code into Netscape composer.
You can indent by using the tab key or increase the margin. Netscape does it for you (and if you like, you can look and see what the HTML code is which Netscape will generate for you!)
Reply:You can use a non breaking space %26amp; nbsp ; (With no spaces)
It's best to use CSS: style="text-indent: 10px;"
If it's an enter paragraph you could do this: %26lt;p style="padding-left: 10px;"%26gt;
Reply:%26lt;style type="text/css"%26gt;
p
{
text-indent: 20px
}
%26lt;/style%26gt;
here is the W3 Schools text indent reference page
http://www.w3schools.com/css/pr_text_tex...
Reply:The easiest way is %26lt;BLOCKQUOTE%26gt;Your indented text here%26lt;/BLOCKQUOTE%26gt;.
Alternatively define a CSS class for the indent
%26lt;style type="text/css"%26gt;
.indent {padding-left:10px;}
%26lt;/style%26gt;
%26lt;p class="indent"%26gt;Your text here%26lt;/p%26gt;
sepal
How do you add an indent to an html code?
Load the HTML code into Netscape composer.
You can indent by using the tab key or increase the margin. Netscape does it for you (and if you like, you can look and see what the HTML code is which Netscape will generate for you!)
Reply:You can use a non breaking space %26amp; nbsp ; (With no spaces)
It's best to use CSS: style="text-indent: 10px;"
If it's an enter paragraph you could do this: %26lt;p style="padding-left: 10px;"%26gt;
Reply:%26lt;style type="text/css"%26gt;
p
{
text-indent: 20px
}
%26lt;/style%26gt;
here is the W3 Schools text indent reference page
http://www.w3schools.com/css/pr_text_tex...
Reply:The easiest way is %26lt;BLOCKQUOTE%26gt;Your indented text here%26lt;/BLOCKQUOTE%26gt;.
Alternatively define a CSS class for the indent
%26lt;style type="text/css"%26gt;
.indent {padding-left:10px;}
%26lt;/style%26gt;
%26lt;p class="indent"%26gt;Your text here%26lt;/p%26gt;
sepal
How do I convert my own downloaded music to html?
I wish to put a music download on to my space, this is off my CD. and I need to change it to HTML.
How do I convert my own downloaded music to html?
You need to find a place to host it and then find the code to linki to it on myspace. Myspace should have tutorials on this.
How do I convert my own downloaded music to html?
You need to find a place to host it and then find the code to linki to it on myspace. Myspace should have tutorials on this.
How do you add something with an HTML code to a freewebs site?
I've tried just putting in the code but that doesn't work. Can anyone help me?
How do you add something with an HTML code to a freewebs site?
you mean like a picture?
you can go to photobucket.com and upload pictures were then you can resize them and everything and then theres their html code you can copy
Reply:No, that's not what I meant. But I find out how to do it. Thanx anyways. Report It
How do you add something with an HTML code to a freewebs site?
you mean like a picture?
you can go to photobucket.com and upload pictures were then you can resize them and everything and then theres their html code you can copy
Reply:No, that's not what I meant. But I find out how to do it. Thanx anyways. Report It
How do I create a submit form html script for username and password?
I need the Information sent to my email address in a message because I'm creating a website. Help!
How do I create a submit form html script for username and password?
Note: If you are using PHP you may need to modify the php.ini file.
Reply:Go to http://www.peej.co.uk/articles/http-auth...
Reply:You need a script, or program on your server which will process the info submitted in your form. The processing could be anything from emailing it to you, or submitting it to a database.
Lots of PHP mail scripts kicking around on the web. if you need a hand message me.
How do I create a submit form html script for username and password?
Note: If you are using PHP you may need to modify the php.ini file.
Reply:Go to http://www.peej.co.uk/articles/http-auth...
Reply:You need a script, or program on your server which will process the info submitted in your form. The processing could be anything from emailing it to you, or submitting it to a database.
Lots of PHP mail scripts kicking around on the web. if you need a hand message me.
How to create a html email ,for yahoo or google?
I would like to know how to create a html email that fits not only outlook but web-based email like yahoo, google, etc. I've tried copy n' paste the html content in email but it showed the code itself in the other end. please help.
Thanks in advance!
How to create a html email ,for yahoo or google?
don't have a clue to your question, just felt sorry for you cos no-one had answered your question and i didn't want you to feel left out.
printable cards
Thanks in advance!
How to create a html email ,for yahoo or google?
don't have a clue to your question, just felt sorry for you cos no-one had answered your question and i didn't want you to feel left out.
printable cards
HTML help? - How do I make my drop-down menu work when the "Go" button is clicked?
I have a drop down menu written but cannot figure out how activate the "Go" or "Submit" button so when the user clicks it, they are taken to where I want them to go.
How do I make the "Go" button active so it directs them to their choice of location?
Simple is VERY GOOD.
Long and complicated Java Scripts will only confuse me.
Explanations are APPRECIATED.
If you can explain the dynamics of your answer so I can understand the process of what occurs when the "Go" button is clicked, I will love you forever.
PLEASE DO NOT copy and paste if you REALLY DON'T KNOW what you are doing. Let the experts shine.
THANKS
HTML help? - How do I make my drop-down menu work when the "Go" button is clicked?
simple, this is the easiest way of doing it, although it would cause a lot of programmers to bite their tounges.
Each option tag has a value of the url you want to go 2. when it is changed, 'onchange' the window.location.href is the address of the window. this.value is the value of which option you picked, and wala, the address takes the value of this.value.
Reply:ok, when? Report It
How do I make the "Go" button active so it directs them to their choice of location?
Simple is VERY GOOD.
Long and complicated Java Scripts will only confuse me.
Explanations are APPRECIATED.
If you can explain the dynamics of your answer so I can understand the process of what occurs when the "Go" button is clicked, I will love you forever.
PLEASE DO NOT copy and paste if you REALLY DON'T KNOW what you are doing. Let the experts shine.
THANKS
HTML help? - How do I make my drop-down menu work when the "Go" button is clicked?
simple, this is the easiest way of doing it, although it would cause a lot of programmers to bite their tounges.
Each option tag has a value of the url you want to go 2. when it is changed, 'onchange' the window.location.href is the address of the window. this.value is the value of which option you picked, and wala, the address takes the value of this.value.
Reply:ok, when? Report It
Can someone help me work out the CSS code for inserting a logo into HTML document?
I need to insert a logo in the top right hand corner of an HTML document. I think I have done it OK in the html sytax but, as I am quite new to this, I am unsure how I define it in the CSS. I just want it in the right hand corner above the title (which is left-aligned). WHen I check the html page the box for the logo with the red cross in the corner appears for about 1 second and then disapperas again. Can anyone help me?
Can someone help me work out the CSS code for inserting a logo into HTML document?
Hello,
Well you will need to put this in your header....
/----------------------------- the CSS
%26lt;style type="text/css"%26gt;
#logo {
background:url(logo.gif) right no-repeat;
width:your value herepx;
height:your value herepx;
}
%26lt;/style%26gt;
/-----------------------the HTML
%26lt;div id="logo"%26gt;%26lt;/div%26gt;
thats it...
Thanks,
Greg WInn
http://winn.ws
Reply:Check here:
http://www.w3schools.com/css/css_referen...
If the box appears then disappears, the problem is further down your page!... You erase it!
"The red cross appears" just means the link to the picture (logo) is incorrect: you need correct url, like:
background-image: url("pics/20048202.jpg");
Reply:If I see the site, it might help. Is it online yet or just saved at your computer?
I would define a class for your logo (considering you probably have more images on the page) and use the following for putting it in the corner via css
.[defined class] {
position:absolute;
top: 0px;
right: 0px;
}
to add a class to the logo, just add the tag[ class="" ]
Can someone help me work out the CSS code for inserting a logo into HTML document?
Hello,
Well you will need to put this in your header....
/----------------------------- the CSS
%26lt;style type="text/css"%26gt;
#logo {
background:url(logo.gif) right no-repeat;
width:your value herepx;
height:your value herepx;
}
%26lt;/style%26gt;
/-----------------------the HTML
%26lt;div id="logo"%26gt;%26lt;/div%26gt;
thats it...
Thanks,
Greg WInn
http://winn.ws
Reply:Check here:
http://www.w3schools.com/css/css_referen...
If the box appears then disappears, the problem is further down your page!... You erase it!
"The red cross appears" just means the link to the picture (logo) is incorrect: you need correct url, like:
background-image: url("pics/20048202.jpg");
Reply:If I see the site, it might help. Is it online yet or just saved at your computer?
I would define a class for your logo (considering you probably have more images on the page) and use the following for putting it in the corner via css
.[defined class] {
position:absolute;
top: 0px;
right: 0px;
}
to add a class to the logo, just add the tag[ class="" ]
HTML: When i put an image in my table there is a white area around the image. How do i get rid of it?
I am taking internet programming but do not know much.
HTML: When i put an image in my table there is a white area around the image. How do i get rid of it?
adjust the cellpadding or cellspacing.
table cellpadding="0" cellspacing="0"
if that does not work there could be margins or padding assigned to the image or table cell.
Reply:I'm not exactly clear on what you want to do. If your image is not a square or rectangle, unless you turn your image into a transparent gif, all images will otherwise display inside of a rectangle with a white background.
It doesn't matter whether you display your image in a table or not. Unless your image background is the same color as your table cell background or your page background, your images will always have a white background.
Here's a link to a good tutorial on how to save an image as a transparent gif for the web. Gif images, transparent or otherwise can only display 256 colors so the results are somewhat limited. But, it may be just the solution to your problem.
http://www.absolutecross.com/tutorials/p...
If you are experienced with png images, you could also save your image as a 24-bit png, but because Internet Explorer 6 and lower doesn't support transparent png images directly, it would still take 50 or so lines of a javascript workaround script code to force older IE browsers to display pngs without the white background.
Reply:make the image the same size as the table, or vice versa, make the table the same size as the image, therefore you will get no whitespace between the image and the tables borders.
If you could please do us a favor and post the size of the table (width="" height="") and the image (### x ###) we can see if this is the case and then change it around for you.
Reply:try changing the margin or padding property of the table.
HTML: When i put an image in my table there is a white area around the image. How do i get rid of it?
adjust the cellpadding or cellspacing.
table cellpadding="0" cellspacing="0"
if that does not work there could be margins or padding assigned to the image or table cell.
Reply:I'm not exactly clear on what you want to do. If your image is not a square or rectangle, unless you turn your image into a transparent gif, all images will otherwise display inside of a rectangle with a white background.
It doesn't matter whether you display your image in a table or not. Unless your image background is the same color as your table cell background or your page background, your images will always have a white background.
Here's a link to a good tutorial on how to save an image as a transparent gif for the web. Gif images, transparent or otherwise can only display 256 colors so the results are somewhat limited. But, it may be just the solution to your problem.
http://www.absolutecross.com/tutorials/p...
If you are experienced with png images, you could also save your image as a 24-bit png, but because Internet Explorer 6 and lower doesn't support transparent png images directly, it would still take 50 or so lines of a javascript workaround script code to force older IE browsers to display pngs without the white background.
Reply:make the image the same size as the table, or vice versa, make the table the same size as the image, therefore you will get no whitespace between the image and the tables borders.
If you could please do us a favor and post the size of the table (width="" height="") and the image (### x ###) we can see if this is the case and then change it around for you.
Reply:try changing the margin or padding property of the table.
How do I change an mp3 file into HTML code for use on myspace?
I would like to use my own music on my myspace page and in the help page at myspace it says to create the code then cut and paste to my page. The problem I'm having is that I have no idea how to mess with html. I have downloaded several programs that claim to help but all they have helped me get is a headache. Please Help Me!!!
How do I change an mp3 file into HTML code for use on myspace?
first, upload your file somewhere. geocities dont accept .wma or .mp3. what i did was convert the mp3 song into flash so it is now a .swf file. geocities accepts .swf files. further more, by converting to .swf, you can set the sound quality. remember the higher the quality, the bigger the file size..
you must consider those people who are not using broadband and wish to view your site. they will be frustrated and may not hear the song be
%26lt;object width="1" height="1"%26gt;
%26lt;param name="movie" value="http://www.geocities.com/youruser...
%26lt;embed src="http://www.geocities.com/youruserid... width="1" height="1"%26gt;
%26lt;/embed%26gt;
%26lt;/object%26gt;
Reply:You can't actually change the MP3 file into HTML. I do not use myspace codes but I assume how it works is that you find a site that hosts the song that you want to play in your profile and allows you to use their bandwidth on myspace. Many sites are specifically for myspace and freely give out myspace html codes for this very purpose.
Reply:IMBED SRC="then your source.mp3%26gt;
yeah das how u do it!!! or try to go to music an den itll tell u a whole latta stuff!!!!
Reply:%26lt;IMBED SRC="then your source.mp3%26gt;
That SHOULD work.
Reply:firstly, you got to upload your mp3 to http://www.upload2.com/.
here..upload your file.
then, take note of the mp3 link and copy and paste into this code..
%26lt;embed
src="here you paste your mp3 file"
width="50%"
height="50%"%26gt;
%26lt;/embed%26gt;
More information about how to put sound into your web is here%26gt;
http://www.w3schools.com/media/media_bro...
Good luck!
love song lyrics
How do I change an mp3 file into HTML code for use on myspace?
first, upload your file somewhere. geocities dont accept .wma or .mp3. what i did was convert the mp3 song into flash so it is now a .swf file. geocities accepts .swf files. further more, by converting to .swf, you can set the sound quality. remember the higher the quality, the bigger the file size..
you must consider those people who are not using broadband and wish to view your site. they will be frustrated and may not hear the song be
%26lt;object width="1" height="1"%26gt;
%26lt;param name="movie" value="http://www.geocities.com/youruser...
%26lt;embed src="http://www.geocities.com/youruserid... width="1" height="1"%26gt;
%26lt;/embed%26gt;
%26lt;/object%26gt;
Reply:You can't actually change the MP3 file into HTML. I do not use myspace codes but I assume how it works is that you find a site that hosts the song that you want to play in your profile and allows you to use their bandwidth on myspace. Many sites are specifically for myspace and freely give out myspace html codes for this very purpose.
Reply:IMBED SRC="then your source.mp3%26gt;
yeah das how u do it!!! or try to go to music an den itll tell u a whole latta stuff!!!!
Reply:%26lt;IMBED SRC="then your source.mp3%26gt;
That SHOULD work.
Reply:firstly, you got to upload your mp3 to http://www.upload2.com/.
here..upload your file.
then, take note of the mp3 link and copy and paste into this code..
%26lt;embed
src="here you paste your mp3 file"
width="50%"
height="50%"%26gt;
%26lt;/embed%26gt;
More information about how to put sound into your web is here%26gt;
http://www.w3schools.com/media/media_bro...
Good luck!
love song lyrics
What is the HTML code for adding your own header image in Livejournal?
The theme style is Mixit for an old basic account. Also, I have no idea if the CSS uses S1 or S2.
What is the HTML code for adding your own header image in Livejournal?
To my knowledge, Mixit is only available as an S2 style. In the S1 system, you had to use a series of codes/overrides to change the style, unlike the html/css you can use in S2.
As for adding a header, this community might help you:
http://community.livejournal.com/s2expre...
There's also a post on how to change the header image here:
http://community.livejournal.com/s2howto...
I'm currently using a variation of a Mixit layout from here:
http://community.livejournal.com/thefulc...
In my opinion, they're some of the best layouts around - and the designer, grrliz, makes it really easy to alter things such as the header.
What is the HTML code for adding your own header image in Livejournal?
To my knowledge, Mixit is only available as an S2 style. In the S1 system, you had to use a series of codes/overrides to change the style, unlike the html/css you can use in S2.
As for adding a header, this community might help you:
http://community.livejournal.com/s2expre...
There's also a post on how to change the header image here:
http://community.livejournal.com/s2howto...
I'm currently using a variation of a Mixit layout from here:
http://community.livejournal.com/thefulc...
In my opinion, they're some of the best layouts around - and the designer, grrliz, makes it really easy to alter things such as the header.
How can I delete the memory of the websites I went to on the html pull down thingy?
You know like when you type something like my the it gives you options to site you already went to like myspace and stuff. I need to delete it bcuz I went on mypace on accident and I'm not allowed! Please help me!
How can I delete the memory of the websites I went to on the html pull down thingy?
Use "Tools" "Internet Options" "Delete History" and "Delete Temp Files". You may also want to use "Delete Cookies" as a complete wash for this site.
Reply:go to tools on the file menu, then internet options, then delete history
Reply:what ^ said
How can I delete the memory of the websites I went to on the html pull down thingy?
Use "Tools" "Internet Options" "Delete History" and "Delete Temp Files". You may also want to use "Delete Cookies" as a complete wash for this site.
Reply:go to tools on the file menu, then internet options, then delete history
Reply:what ^ said
Html code that hides everything on Myspace Music page so I can code from scratch?
I've seen that there is a code out there that hides everything on a myspace page so you can work on it from scratch with your html code. The only problem is I have a myspace music account and would like to know if there is a code for that?
Html code that hides everything on Myspace Music page so I can code from scratch?
Never use anything with the word "wacko" or "pimp" in it.
Anyway, "starting from scratch" would mean clearing all your html out of your profile's editor, but if you wanna hide everything, just use this gen. There's one for the right column, %26amp; one for the left.
Left Column:
http://www.abrax.us/Katamari/LeftColumnG...
Right Column:
http://www.abrax.us/Katamari/RightColumn...
Reply:http://www.mywackospace.com/myspace-gene...
click the section you want to leave out and click generate after that.
Html code that hides everything on Myspace Music page so I can code from scratch?
Never use anything with the word "wacko" or "pimp" in it.
Anyway, "starting from scratch" would mean clearing all your html out of your profile's editor, but if you wanna hide everything, just use this gen. There's one for the right column, %26amp; one for the left.
Left Column:
http://www.abrax.us/Katamari/LeftColumnG...
Right Column:
http://www.abrax.us/Katamari/RightColumn...
Reply:http://www.mywackospace.com/myspace-gene...
click the section you want to leave out and click generate after that.
How can I create great looking html mails to market my products?
You mean spam or informative e-mails that you send when people specifically request information on your products? When so many people block HTML e-mails that may contain viruses or Trojans, it may not be worth the effort, but you can create HTML in Word or FrontPage or other web page editor and copy and paste it into emails Word has a menu option to send as e-mail
greeting cards
greeting cards
What are the Functional and non-functional Project Requirement when creating a web site using html and?
What are the Functional and non-functional Project Requirement when creating a web site using html and javascript?
What are the Functional and non-functional Project Requirement when creating a web site using html and?
In systems engineering and requirements engineering, non-functional requirements are requirements which specify criteria that can be used to judge the operation of a system, rather than specific behaviors. This should be contrasted with functional requirements that specify specific behavior or functions. Typical non-functional requirements are reliability, scalability, and cost. Non-functional requirements are often called the ilities of a system. Other terms for non-functional requirements are "quality attributes" and "quality of service requirements".
Functional requirements- define the internal workings of the software: that is, the calculations, technical details, data manipulation and processing, and other specific functionality that show how the use cases are to be satisfied.
Non functional - They are supported by non-functional requirements, which impose constraints on the design or implementation (such as performance requirements, quality standards, or design constraints).
So non functional would be cost, quality, expertise of programmers.
Functional would be the actually programming in HTML and the inner workings of the website.
What are the Functional and non-functional Project Requirement when creating a web site using html and?
In systems engineering and requirements engineering, non-functional requirements are requirements which specify criteria that can be used to judge the operation of a system, rather than specific behaviors. This should be contrasted with functional requirements that specify specific behavior or functions. Typical non-functional requirements are reliability, scalability, and cost. Non-functional requirements are often called the ilities of a system. Other terms for non-functional requirements are "quality attributes" and "quality of service requirements".
Functional requirements- define the internal workings of the software: that is, the calculations, technical details, data manipulation and processing, and other specific functionality that show how the use cases are to be satisfied.
Non functional - They are supported by non-functional requirements, which impose constraints on the design or implementation (such as performance requirements, quality standards, or design constraints).
So non functional would be cost, quality, expertise of programmers.
Functional would be the actually programming in HTML and the inner workings of the website.
How can i assign flexible width and hight attributes to a pictures in HTML?
I have an image that has a specific hight and width attribute hight="250" and width="230" but i want to change the image within my server and therefore change the image on my website but the new image has different dimensions. What should i assign to the value of Hight and width so that it changes with the value of the original file?
How can i assign flexible width and hight attributes to a pictures in HTML?
You need to do some server side programming that will dynamically create the height and width attriibutes of the image that you would like and then add the attributes to the image tag before rendering the HTML down to the client. It is hard to give examples since I don't know what language you are using.
Reply:The size attributes, 250, and 230 are the dimensions of the displayed image, they are not necessarily the size of the current image, it will get scaled to fill a box 250 x 230. If you put a new image on the server with the same name as the current one (and then remove the current one) it will be displayed at the same size as the current picture, no matter what size the actual size of the new image.... hope that makes sense.
I'm pretty sure thats what you are trying to do....
A good idea is to rename the image that you are replacing, add .old onto the end of the filename. Then upload the new image (make sure it is exactly the same name as the image you are replacing (and you have renamed :) ). Also make sure you put it in exactly the same directory as the current image. Now when you open you page you will see your new image in place of the old one, it will be the same size on the page and wont make other items on the page get moved around and reorganised.
How can i assign flexible width and hight attributes to a pictures in HTML?
You need to do some server side programming that will dynamically create the height and width attriibutes of the image that you would like and then add the attributes to the image tag before rendering the HTML down to the client. It is hard to give examples since I don't know what language you are using.
Reply:The size attributes, 250, and 230 are the dimensions of the displayed image, they are not necessarily the size of the current image, it will get scaled to fill a box 250 x 230. If you put a new image on the server with the same name as the current one (and then remove the current one) it will be displayed at the same size as the current picture, no matter what size the actual size of the new image.... hope that makes sense.
I'm pretty sure thats what you are trying to do....
A good idea is to rename the image that you are replacing, add .old onto the end of the filename. Then upload the new image (make sure it is exactly the same name as the image you are replacing (and you have renamed :) ). Also make sure you put it in exactly the same directory as the current image. Now when you open you page you will see your new image in place of the old one, it will be the same size on the page and wont make other items on the page get moved around and reorganised.
How do I save optimized as html in Image Ready without it pixelating the gradients and images my page?
How do I save optimized as html in Image Ready without it pixelizing the gradients and images my page?
It's only doing it slightly but it doesn't look as good. I'm using 7.0
How do I save optimized as html in Image Ready without it pixelating the gradients and images my page?
When you're saving the image "for the web" you should see a dialog where you can adjust the quality of the image. For better gradients, use jpeg around a quality of 45 or higher.
Since you mention html, I'm guessing you're doing a page layout and it should be sliced up so you have the elements broken up. The html is just the web page code.
If you're doing a background gradient for your web page, you only need a slice of it that's going to repeat, not the whole image, so you can have a quality image and a small file size.
flower arranging
It's only doing it slightly but it doesn't look as good. I'm using 7.0
How do I save optimized as html in Image Ready without it pixelating the gradients and images my page?
When you're saving the image "for the web" you should see a dialog where you can adjust the quality of the image. For better gradients, use jpeg around a quality of 45 or higher.
Since you mention html, I'm guessing you're doing a page layout and it should be sliced up so you have the elements broken up. The html is just the web page code.
If you're doing a background gradient for your web page, you only need a slice of it that's going to repeat, not the whole image, so you can have a quality image and a small file size.
flower arranging
When I start Internet Explorer I receive a message indicating need Active Desktop HTML files to connect?
A message on system indicates that I need my Active Desktop HTML files in order to connect to server. How can I finds the files and place them where needed?
When I start Internet Explorer I receive a message indicating need Active Desktop HTML files to connect?
Simpler thing is to uninstall and reinstall the IE.
You might just get caught with IE7, so, I'd suggest you look for IE6 when you get the download page. IE 7 is a Beta [Tester's] version, not meant for non-pros.
All the best.
Cheers.
Whoops, forgot, unless you have an alternate browser, how will you download this?
You might just need some friend to download it and install it on your computer for you.
When I start Internet Explorer I receive a message indicating need Active Desktop HTML files to connect?
Simpler thing is to uninstall and reinstall the IE.
You might just get caught with IE7, so, I'd suggest you look for IE6 when you get the download page. IE 7 is a Beta [Tester's] version, not meant for non-pros.
All the best.
Cheers.
Whoops, forgot, unless you have an alternate browser, how will you download this?
You might just need some friend to download it and install it on your computer for you.
After you buy a domain and find a host how do you post your html onto a website and start it?
i've bought a domain and have a host (godaddy) i can do html but i can not figure out how to edit my site and get it up and running.
After you buy a domain and find a host how do you post your html onto a website and start it?
Hey, I have a domain at godaddy and I ftp my data to the host. You'll have to login your godaddy account and add an ftp user. Might have to get them on the phone, I can't remember the sequence to get there! Anyhow, you'll then have a url ftp.yourdomainname.whatever4extension that you can connect an ftp program to. There are free ones out there and they are easy to use. Something like your machine in the window on the left and the server on the right. Select the files on the left and then click the little arrow that points to the server and boom, they are uploaded.
Run a search for filezilla, it's free from sourceforge.net I think.
Hope that helps!
Barrie
Reply:Default FTP port is 21. Report It
After you buy a domain and find a host how do you post your html onto a website and start it?
Hey, I have a domain at godaddy and I ftp my data to the host. You'll have to login your godaddy account and add an ftp user. Might have to get them on the phone, I can't remember the sequence to get there! Anyhow, you'll then have a url ftp.yourdomainname.whatever4extension that you can connect an ftp program to. There are free ones out there and they are easy to use. Something like your machine in the window on the left and the server on the right. Select the files on the left and then click the little arrow that points to the server and boom, they are uploaded.
Run a search for filezilla, it's free from sourceforge.net I think.
Hope that helps!
Barrie
Reply:Default FTP port is 21. Report It
How do i get a html code for my xbox live gamercard?
so i can post it on the internet?
How do i get a html code for my xbox live gamercard?
go to...mygamercard.net thats who you can get that code..hope i heled..lol
Reply:Xboxlive.com, sign in, an go to your profile.
How do i get a html code for my xbox live gamercard?
go to...mygamercard.net thats who you can get that code..hope i heled..lol
Reply:Xboxlive.com, sign in, an go to your profile.
How do I know what html to delete on my Myspace page?
For instance if I want to change backgrounds or change my slideshow to a different one that's not from myspace. How do you know what to delete and not lose anything else?
How do I know what html to delete on my Myspace page?
One solution would be to LEARN HTML!
Reply:Do you even know how to use HTML if you dont learn
Reply:Learn HTML, or go to a myspace generator site, build a complete page, and then delete everything and replace the code with the new.
Reply:Easy........ learn to read HTML.
When modifying HTML the old fashioned way on any webpage, I usually try to spot things like file names + extensions to give me a rough idea where abouts on the page the code is referring to.
When removing things, I usually cut %26amp; paste it into a Windows WordPad / Notepad document and save it, just in case I've made a screw-up and need to put it back in again.
A good place to learn about HTML coding is http://www.htmlgoodies.com
flower arrangement
How do I know what html to delete on my Myspace page?
One solution would be to LEARN HTML!
Reply:Do you even know how to use HTML if you dont learn
Reply:Learn HTML, or go to a myspace generator site, build a complete page, and then delete everything and replace the code with the new.
Reply:Easy........ learn to read HTML.
When modifying HTML the old fashioned way on any webpage, I usually try to spot things like file names + extensions to give me a rough idea where abouts on the page the code is referring to.
When removing things, I usually cut %26amp; paste it into a Windows WordPad / Notepad document and save it, just in case I've made a screw-up and need to put it back in again.
A good place to learn about HTML coding is http://www.htmlgoodies.com
flower arrangement
How do you make a HTML code thats a picture and links you to another site?
You know, like when you click on the picture it takes you to another site? Can you give me a code so I can insert a picture/link on myspace?
How do you make a HTML code thats a picture and links you to another site?
%26lt;A HREF="the address you want the link to point to"%26gt;
%26lt;IMG SRC="the address of the picture"%26gt;
%26lt;/A%26gt;
Reply:%26lt;a href="http://site_name/"%26gt; %26lt;img src="http://image_url"%26gt; %26lt;/a%26gt;
there ya go!
david.e.oates@gmail.com
Reply:%26lt;a href="URL of site"%26gt;%26lt;img src="URL of picture"%26gt;%26lt;/a%26gt;
Reply:%26lt;a href="www.yahoo.com"%26gt;
%26lt;img border="0" src="picture.gif" width="65" height="38"%26gt;
%26lt;/a%26gt;
This is how a picture is used as a link in html
Reply:%26lt;a href="address"%26gt;%26lt;img src="picture"%26gt;%26lt;/a%26gt;
How do you make a HTML code thats a picture and links you to another site?
%26lt;A HREF="the address you want the link to point to"%26gt;
%26lt;IMG SRC="the address of the picture"%26gt;
%26lt;/A%26gt;
Reply:%26lt;a href="http://site_name/"%26gt; %26lt;img src="http://image_url"%26gt; %26lt;/a%26gt;
there ya go!
david.e.oates@gmail.com
Reply:%26lt;a href="URL of site"%26gt;%26lt;img src="URL of picture"%26gt;%26lt;/a%26gt;
Reply:%26lt;a href="www.yahoo.com"%26gt;
%26lt;img border="0" src="picture.gif" width="65" height="38"%26gt;
%26lt;/a%26gt;
This is how a picture is used as a link in html
Reply:%26lt;a href="address"%26gt;%26lt;img src="picture"%26gt;%26lt;/a%26gt;
How can I build a web site to deliver free ringtones and wall paper etc. Would I build like a regular html?
I build sites for small businesses and would like to build a site with free ringtones and other material for cell phones for free. Im not familiar with the distribution, or if there is different code to communicate with cell phones.Can you Help?
How can I build a web site to deliver free ringtones and wall paper etc. Would I build like a regular html?
as far as I am aware most ringtones now are either mp3 or midi format. and are downloaded to the phone in that format.
if I host an mp3 on my webspace I can download to the phone via wap direct to the phone. I assume images are the same deal (.jpg files i think) most phones know where to put different filestypes in it's internal structure
how you would do this to download via sms i dont know.
hope this goes someway to helping with your problem
How can I build a web site to deliver free ringtones and wall paper etc. Would I build like a regular html?
as far as I am aware most ringtones now are either mp3 or midi format. and are downloaded to the phone in that format.
if I host an mp3 on my webspace I can download to the phone via wap direct to the phone. I assume images are the same deal (.jpg files i think) most phones know where to put different filestypes in it's internal structure
how you would do this to download via sms i dont know.
hope this goes someway to helping with your problem
How can I use HTML to create a time specific event on a web-site?
I have an event that only happens at specific times of the day, but I tend to forget unless I'm looking right at the clock. Is there a code to make a reminder pop up on my website?
How can I use HTML to create a time specific event on a web-site?
HTML isn't a programming language, so will not be able to perform this task. You can however do this by embedding JavaScript - check out http://www.w3.org/ for tutorials.
One potential flaw I can spot in your system - what if your web page isn't open at that time?... I think there are probably "reminder" programs out there already - try searching Google to see if something already exists.
Rawlyn.
Reply:You can setup a easy html on dream weaver and you can do what ever you want to do.. Go to http://www.adobe.com/
How can I use HTML to create a time specific event on a web-site?
HTML isn't a programming language, so will not be able to perform this task. You can however do this by embedding JavaScript - check out http://www.w3.org/ for tutorials.
One potential flaw I can spot in your system - what if your web page isn't open at that time?... I think there are probably "reminder" programs out there already - try searching Google to see if something already exists.
Rawlyn.
Reply:You can setup a easy html on dream weaver and you can do what ever you want to do.. Go to http://www.adobe.com/
How can I create a html code for a banner I created for my website?
I just created a banner for my website. I want to promote my site using banner exchanging but i do not know how to create the html code. Quick help please!
How can I create a html code for a banner I created for my website?
ooh, try this:
%26lt;img src=URL for banner%26gt;
and if you'd like people to click on the banner do this:
%26lt;a href=URL for site%26gt;%26lt;img src=url for banner%26gt;%26lt;/a%26gt;
Tell me your site address too-I need to promote my site too! :)
Reply:go to photobucket.com and create an account and u can upload photos there. If you dont want to do that, you can go to smallpic.com too..
eurovision song contest
How can I create a html code for a banner I created for my website?
ooh, try this:
%26lt;img src=URL for banner%26gt;
and if you'd like people to click on the banner do this:
%26lt;a href=URL for site%26gt;%26lt;img src=url for banner%26gt;%26lt;/a%26gt;
Tell me your site address too-I need to promote my site too! :)
Reply:go to photobucket.com and create an account and u can upload photos there. If you dont want to do that, you can go to smallpic.com too..
eurovision song contest
How do I imbed a quick time.32g video it to an html page?
I am attempting to embed a video that I took on my Motorola Qmoto pocket pc. It is savingthefile as a .32g media file. Any sugestions?
How do I imbed a quick time.32g video it to an html page?
Your best bet is to find another web site that shows a quicktime move and examine the source.
Apple has plenty of quicktime movies on their web site.
How do I imbed a quick time.32g video it to an html page?
Your best bet is to find another web site that shows a quicktime move and examine the source.
Apple has plenty of quicktime movies on their web site.
Im trying to find the Html code for the Mario Twins video to put on myspace?
Its on many different websites, and its a flash file, but they dont have a html code so you can put it on web pages, and i was wondering if you simply cant put it on or if there is a way to
Im trying to find the Html code for the Mario Twins video to put on myspace?
try looking for it on the myspace video page
Im trying to find the Html code for the Mario Twins video to put on myspace?
try looking for it on the myspace video page
How do you place lines of texts next to an image in HTML?
Hi,
How do you place lines of texts next to an image in HTML? The image is quite big and I could only place one line of text next to the bottom of the image. How do you make it so that the few lines of texts can be next to the image? Hope you understand what I mean. Thanks a lot people.
How do you place lines of texts next to an image in HTML?
Simply add -
align="left"
within the image tag %26lt;img%26gt; and the text will wrap around the image. You may want to add horizontal space too if the text butts up against the image too close. Add
hspace="5" or any number
to give the image a little breathing room.
You can also align="right" and text will wrap on the other side.
Joyce
http://www.DesignByJoyce.com/
Reply:Hi,
you can use align attribute of img tag for proper alignment.
How do you place lines of texts next to an image in HTML? The image is quite big and I could only place one line of text next to the bottom of the image. How do you make it so that the few lines of texts can be next to the image? Hope you understand what I mean. Thanks a lot people.
How do you place lines of texts next to an image in HTML?
Simply add -
align="left"
within the image tag %26lt;img%26gt; and the text will wrap around the image. You may want to add horizontal space too if the text butts up against the image too close. Add
hspace="5" or any number
to give the image a little breathing room.
You can also align="right" and text will wrap on the other side.
Joyce
http://www.DesignByJoyce.com/
Reply:Hi,
you can use align attribute of img tag for proper alignment.
How can i encrypt my Html links?
I built my website myself with html. I want to encrypt my links. Any suggestions?
How can i encrypt my Html links?
Since all browsers have to read the link information in order to display, encryption is just a waste of time. You can "munge" the links, especially the emailto: links ( http://www.projecthoneypot.org/maintenan... ) to hide addy from spam bots only.
Any encryption used to "encrypt" a page can be decoded by those who know since the browser has to "decode" the page to present it.
Ron
Reply:totally agree with Payne..
---------
http://www.hackinbox.net
Security portal
freeware download area
Videos tutorials
Windows vista and xp Tips and tricks
http://www.hackinbox.net
---------------------------
wedding song
How can i encrypt my Html links?
Since all browsers have to read the link information in order to display, encryption is just a waste of time. You can "munge" the links, especially the emailto: links ( http://www.projecthoneypot.org/maintenan... ) to hide addy from spam bots only.
Any encryption used to "encrypt" a page can be decoded by those who know since the browser has to "decode" the page to present it.
Ron
Reply:totally agree with Payne..
---------
http://www.hackinbox.net
Security portal
freeware download area
Videos tutorials
Windows vista and xp Tips and tricks
http://www.hackinbox.net
---------------------------
wedding song
How do I create html codes for items I make?
If I make some sort of picture or layout, how can I make a html code for it so that I may put it on a website or something else like that?
How do I create html codes for items I make?
If you mean you want to write the HTML code and put it in a box for someone to copy, use this:
%26lt;div style="text-align: center;"%26gt;%26lt;textarea name="code box" rows="5" cols="60"%26gt;You must add your HTML code in the box like this using character entity tags: %26lt;div style="text-align: center;"%26gt;%26lt;textarea name="code box" rows="5" cols="60"%26gt;%26lt;/textarea%26gt;%26lt;/div%26gt;%26lt;/textarea%26gt;%26lt;/...
Ron
Reply:If you are using FrontPage or another program, you don't make the HMTL code, it's already made! You're just looking at the "Real View" of it, not the computer "lingo." FrontPage: Click and highlight the "Cool-Format" and then click on HTML Tab at bottom of screen. Then find the highlighted part and then share that code.
Reply:http://allwebdata.com/html.htm
GO VISIT THIS SITE!!!!!!!!!!!
Reply:%26lt;textarea%26gt; CODE HERE! %26lt;/textarea%26gt;
How do I create html codes for items I make?
If you mean you want to write the HTML code and put it in a box for someone to copy, use this:
%26lt;div style="text-align: center;"%26gt;%26lt;textarea name="code box" rows="5" cols="60"%26gt;You must add your HTML code in the box like this using character entity tags: %26lt;div style="text-align: center;"%26gt;%26lt;textarea name="code box" rows="5" cols="60"%26gt;%26lt;/textarea%26gt;%26lt;/div%26gt;%26lt;/textarea%26gt;%26lt;/...
Ron
Reply:If you are using FrontPage or another program, you don't make the HMTL code, it's already made! You're just looking at the "Real View" of it, not the computer "lingo." FrontPage: Click and highlight the "Cool-Format" and then click on HTML Tab at bottom of screen. Then find the highlighted part and then share that code.
Reply:http://allwebdata.com/html.htm
GO VISIT THIS SITE!!!!!!!!!!!
Reply:%26lt;textarea%26gt; CODE HERE! %26lt;/textarea%26gt;
What is the html code to create a link that forwards an email?
I'm trying to allow people to click a link in Outlook that will forward an email to another address and not create a reply or new email.
What is the html code to create a link that forwards an email?
ah its indeed possible...
1. Create the form on a new blank page and save it as referit.asp.
2. Name the first box "SenderName".
3. Name the second box "Email".
4. Set the form action to referit2.asp (right click in the form, Form Properties, Send to other, Options, Action box).
visit..
http://www.frontpagehowto.com/referit.as...
OR
http://www.htmlcodetutorial.com/help/sut...
hope this helps
Cheers:)
Reply:http://www.reachcustomersonline.com/cont...
Reply:%26lt;a href="mailto:EMAIL"%26gt;%26lt;/a%26gt;
Creates a mailto link
You might try making some kind of form to do this with but here is a cheat sheet for html. I am pretty sure you can set the mail to link up to include the original text just dont have time to figure it out for you but here is the link: http://www.webmonkey.com/webmonkey/refer...
Reply:Ah - you want to see if people are reading the email or you want to predicate more spam?
If it is not either of the above then email me clarification - otherwise write your own spam generator
What is the html code to create a link that forwards an email?
ah its indeed possible...
1. Create the form on a new blank page and save it as referit.asp.
2. Name the first box "SenderName".
3. Name the second box "Email".
4. Set the form action to referit2.asp (right click in the form, Form Properties, Send to other, Options, Action box).
visit..
http://www.frontpagehowto.com/referit.as...
OR
http://www.htmlcodetutorial.com/help/sut...
hope this helps
Cheers:)
Reply:http://www.reachcustomersonline.com/cont...
Reply:%26lt;a href="mailto:EMAIL"%26gt;%26lt;/a%26gt;
Creates a mailto link
You might try making some kind of form to do this with but here is a cheat sheet for html. I am pretty sure you can set the mail to link up to include the original text just dont have time to figure it out for you but here is the link: http://www.webmonkey.com/webmonkey/refer...
Reply:Ah - you want to see if people are reading the email or you want to predicate more spam?
If it is not either of the above then email me clarification - otherwise write your own spam generator
How do you make pictures and words clickable when doing html on neopets guilds?
Also how do you make pictures move back and forth ... like an arrow pointing at something?
How do you make pictures and words clickable when doing html on neopets guilds?
u embed the words or image in anchor tags with the href attribute pointing to whatever resource u are linking to
How do you make pictures and words clickable when doing html on neopets guilds?
u embed the words or image in anchor tags with the href attribute pointing to whatever resource u are linking to
How would an html writer get different versions of the same page to display for a web browser?
Automatically, depending on the country the browser is physically located?
How would an html writer get different versions of the same page to display for a web browser?
To elaborate a bit more than the last guy, you would need a dynamic scripting language such as ASP, PHP or ASP.NET. There are built in functions in each of those languages to find out the IP address and then create or place content on a page according to their location.
But finding out the IP Address is only part of the problem. You then need to know what area or country that IP belongs to. Check out this link, http://www.analysespider.com/geo-targeti... I think it may shed a bit mor e light on it for you.
Reply:Use a script language to determine the location of the requesting IP address -- based on location, show the desired content.
stamen
How would an html writer get different versions of the same page to display for a web browser?
To elaborate a bit more than the last guy, you would need a dynamic scripting language such as ASP, PHP or ASP.NET. There are built in functions in each of those languages to find out the IP address and then create or place content on a page according to their location.
But finding out the IP Address is only part of the problem. You then need to know what area or country that IP belongs to. Check out this link, http://www.analysespider.com/geo-targeti... I think it may shed a bit mor e light on it for you.
Reply:Use a script language to determine the location of the requesting IP address -- based on location, show the desired content.
stamen
How to stop people from editing the text shown in html text boxes?
I just want the text in the text boxto be shown, i dont want peopel to be able to type in out how do i solve this?
How to stop people from editing the text shown in html text boxes?
%26lt;type = "text" value="don't touch me" readonly = "true"/%26gt;
How to stop people from editing the text shown in html text boxes?
%26lt;type = "text" value="don't touch me" readonly = "true"/%26gt;
Why do some html codes cause my comments to disappear on myspace?
Some codes from some sites cause my comments to disappear. Eveyone else can see them except me. Someone mentioned it had something to do with Windows Vista. I don't know... Is there a part of the code I can delete or change?
Why do some html codes cause my comments to disappear on myspace?
Thats myspace for you. There is so much crap out there that conflicts with eachother. It's really hard to say.
It has nothing to do with Windows Vista. Whoever told you that is an idiot. Everyone blames everything on Vista. What it could be is Internet Explorer 7. I have noticed some page layouts get cut off using this.
Try downloading Firefox. Its a much better and more web compliant browser.
http://www.mozilla.com/en-US/firefox/
Why do some html codes cause my comments to disappear on myspace?
Thats myspace for you. There is so much crap out there that conflicts with eachother. It's really hard to say.
It has nothing to do with Windows Vista. Whoever told you that is an idiot. Everyone blames everything on Vista. What it could be is Internet Explorer 7. I have noticed some page layouts get cut off using this.
Try downloading Firefox. Its a much better and more web compliant browser.
http://www.mozilla.com/en-US/firefox/
How can i change the displayed url of a webpage using html?
I know there is a code out there, i had one before...
i want a html code to put on a webpage, lets say myspace, that will make the url of the page look like something else, lets say google.
the code i had before also inhibeted teh changing of the url
How can i change the displayed url of a webpage using html?
You can make a link appear to go to a different destination by changing status bar text, but for security reasons, you cannot change the apparent site location in the navigation bar.
Were that safeguard not in place, a malicious hacker could create a page on a free web host that looked like PayPal's login page, even to the point of displaying PayPal's URI in the address bar, and then get you to go to his site and use "secure PayPal checkout!" to buy whatever he's selling. It'd be very, very tricky and almost undetectable by a casual user.
Therefore, the major browsers all take navigation bar spoofing very, very seriously. I very much doubt you'd be able to accomplish it with any consistency, and if you could, it's a bug, not a feature!
As to "click-trapping" or "mouse-trapping", visit the link below. It's considered quite rude.
Reply:%26lt;a href="www.yourwebpage.com"%26gt;All text within the two tags will be displayed as the link to ww.yourwebpage.com%26lt;/a%26gt; text outside of the two tags will appear normal.
Reply:I don't think you can change the URL of you page in the address bar as it is the unique domain name identifier of your IP address.
i want a html code to put on a webpage, lets say myspace, that will make the url of the page look like something else, lets say google.
the code i had before also inhibeted teh changing of the url
How can i change the displayed url of a webpage using html?
You can make a link appear to go to a different destination by changing status bar text, but for security reasons, you cannot change the apparent site location in the navigation bar.
Were that safeguard not in place, a malicious hacker could create a page on a free web host that looked like PayPal's login page, even to the point of displaying PayPal's URI in the address bar, and then get you to go to his site and use "secure PayPal checkout!" to buy whatever he's selling. It'd be very, very tricky and almost undetectable by a casual user.
Therefore, the major browsers all take navigation bar spoofing very, very seriously. I very much doubt you'd be able to accomplish it with any consistency, and if you could, it's a bug, not a feature!
As to "click-trapping" or "mouse-trapping", visit the link below. It's considered quite rude.
Reply:%26lt;a href="www.yourwebpage.com"%26gt;All text within the two tags will be displayed as the link to ww.yourwebpage.com%26lt;/a%26gt; text outside of the two tags will appear normal.
Reply:I don't think you can change the URL of you page in the address bar as it is the unique domain name identifier of your IP address.
How can i change the displayed url of a webpage using html?
I know there is a code out there, i had one before...
i want a html code to put on a webpage, lets say myspace, that will make the url of the page look like something else, lets say google.
the code i had before also inhibeted teh changing of the url
How can i change the displayed url of a webpage using html?
You can make a link appear to go to a different destination by changing status bar text, but for security reasons, you cannot change the apparent site location in the navigation bar.
Were that safeguard not in place, a malicious hacker could create a page on a free web host that looked like PayPal's login page, even to the point of displaying PayPal's URI in the address bar, and then get you to go to his site and use "secure PayPal checkout!" to buy whatever he's selling. It'd be very, very tricky and almost undetectable by a casual user.
Therefore, the major browsers all take navigation bar spoofing very, very seriously. I very much doubt you'd be able to accomplish it with any consistency, and if you could, it's a bug, not a feature!
As to "click-trapping" or "mouse-trapping", visit the link below. It's considered quite rude.
Reply:%26lt;a href="www.yourwebpage.com"%26gt;All text within the two tags will be displayed as the link to ww.yourwebpage.com%26lt;/a%26gt; text outside of the two tags will appear normal.
Reply:I don't think you can change the URL of you page in the address bar as it is the unique domain name identifier of your IP address.
sim cards
i want a html code to put on a webpage, lets say myspace, that will make the url of the page look like something else, lets say google.
the code i had before also inhibeted teh changing of the url
How can i change the displayed url of a webpage using html?
You can make a link appear to go to a different destination by changing status bar text, but for security reasons, you cannot change the apparent site location in the navigation bar.
Were that safeguard not in place, a malicious hacker could create a page on a free web host that looked like PayPal's login page, even to the point of displaying PayPal's URI in the address bar, and then get you to go to his site and use "secure PayPal checkout!" to buy whatever he's selling. It'd be very, very tricky and almost undetectable by a casual user.
Therefore, the major browsers all take navigation bar spoofing very, very seriously. I very much doubt you'd be able to accomplish it with any consistency, and if you could, it's a bug, not a feature!
As to "click-trapping" or "mouse-trapping", visit the link below. It's considered quite rude.
Reply:%26lt;a href="www.yourwebpage.com"%26gt;All text within the two tags will be displayed as the link to ww.yourwebpage.com%26lt;/a%26gt; text outside of the two tags will appear normal.
Reply:I don't think you can change the URL of you page in the address bar as it is the unique domain name identifier of your IP address.
sim cards
I just started learning HTML, what do you recommend I study next to become a good web designer?
I just started learning HTML, what do you recommend I study next to become a good web designer? And also, do you know of any free online courses/ tutorials for those?
I just started learning HTML, what do you recommend I study next to become a good web designer?
CSS Stylesheets...
I like W3Schools for simple reference and startup information guide.
Reply:I started like this, so I will tell you like this... I went to places I liked how it was setup, On the browser click the edit with notepad button %26amp; just read code after code to see how things worked, from that in mind.. You can only learn hands on, You can spend your whole life reading, But what you really need is to start from a simple template in mind, do all your graphics %26amp; just make magic.
Reply:Cascading Style Sheets (CSS) would be another good start, as when you master that (and graphic design) you can create some visually stunning websites with it...
I just started learning HTML, what do you recommend I study next to become a good web designer?
CSS Stylesheets...
I like W3Schools for simple reference and startup information guide.
Reply:I started like this, so I will tell you like this... I went to places I liked how it was setup, On the browser click the edit with notepad button %26amp; just read code after code to see how things worked, from that in mind.. You can only learn hands on, You can spend your whole life reading, But what you really need is to start from a simple template in mind, do all your graphics %26amp; just make magic.
Reply:Cascading Style Sheets (CSS) would be another good start, as when you master that (and graphic design) you can create some visually stunning websites with it...
How do I use HTML code to put words at the top of a webpage?
Well, I make profile-layouts on a site called darkstarlings.com and I do not know how to make my mark or I do but I need to know this one HTML code to put text at the very top of the page above everything else. Help me please.
How do I use HTML code to put words at the top of a webpage?
This is actually very easy to do. I also have a Darkstarlings account and make all my layouts myself. What you need to do is go to your Control Panel and click on Look and Feel (Listed direct link bellow). Scroll down to the bottom and look where it says custom CSS. The box beside it is what you put you text in.
The CSS box does not allow much coding, but it will allow you to center and break to the next line.
If you need anymore help then just IM me on yahoo or you can talk to me on Darkstarlings. My screen name on their is pink.EFFIN.killer
Hope I helped.
How do I use HTML code to put words at the top of a webpage?
This is actually very easy to do. I also have a Darkstarlings account and make all my layouts myself. What you need to do is go to your Control Panel and click on Look and Feel (Listed direct link bellow). Scroll down to the bottom and look where it says custom CSS. The box beside it is what you put you text in.
The CSS box does not allow much coding, but it will allow you to center and break to the next line.
If you need anymore help then just IM me on yahoo or you can talk to me on Darkstarlings. My screen name on their is pink.EFFIN.killer
Hope I helped.
I need to remove HTML from my browsers. How is this done please?
I have been advised on here that the red cross I see instead of a desired photo could be because of the HTML on my browsers. I use both Firefox and BT Yahoo. I would be most grateful if this will solve the problem because everyone else on the rugby website seems to be able to view the photos without difficulty. I must add, it's only on that particular website, I have no difficulty on others. It just so happens that it's my favourite site, unfortunately.
I need to remove HTML from my browsers. How is this done please?
its not the html and you cannot remove HTML from a browser, cause there is nothing like that.. html is a language with is interpreted by browsers to give you output as a webpage... so whatever u see is thru browser's interperter ...
About the site where u see that cross, it must be due to some sorta missing plugin.. like flash plugin or java plugiun.. if you can share the site, it would be more clear to see what is the problem..
Also some times if the site is heavy u are on dialup(least chances) then some pictures being heavy cannot be downloaded and hence u see the red cross .. :)
hope this helps
cheers !
Reply:It is an error mildly associated with the HTML however you cannot remove HTML from your browser. HTML (Hyper Text Markup Language) is the final output language for all website, every single website uses HTML but some use other languages in the background to help them run.
The red cross you see is because the HTML is trying to get an image which doesn't exist, this could be because the incorrect file location has been entered or the image is corrupt or missing.
Your best bet is to contact the webmaster of the website (should be able to find some sort of contact details somewhere on the site) and let them know the problem you are experiencing. They will be happy to help as most webmasters pride their work and want everything to work perfectly.
Hope this is some help!
Reply:You've been misinformed. You state that (a) other folks can see the website pictures OK and (b) you can access other websites OK.
It is odd that you get the problem with 2 different browsers, were it just one then I could understand.
Why not add the website address to your question, it may then be possible to give an answer.
Reply:Either the images do not exist, or the paths to the files have changed under some circumstance (e.g. moving files around in the directory). Contact the webmaster and let them know that they have images on their site that are not working.
Reply:As mentioned previously HTML is a markup language that your browser interprets to display the web pages on your monitor or screen.
The most likely cause of the problem your experiencing is a bad link on the website itself. Some browsers are more particular then others when it comes to interpreting HTML.
There is one other thing you may want to look into though you should verify that your browser is not set to disable images and you have not disabled JavaScript in your browser as well.
You indicated that you do not experience this on any other site so odds are it is something wrong in the source code of the page your trying to view the images on.
Hope that helps
Kevin
The following are some of my personal web sites
http://www.lakeareawebs.com
http://mysticwarriorsofrage.com
http://vanguard.mysticwarriorsofrage.com
http://websinglesdating.com
Reply:I can confirm that most webmasters would be, if not happy, at least grateful to hear from you about their problem (and it is their problem, not yours), as we want everyone to be able to view what we have put up for you to see.
Sometimes we are presented with problems that seem very strange, and they can take a while to sort out, especially if they only occur on a few computers. So write to the webmaster, use the contact address on the site if there is one, or else to " webmaster AT the url " (leave out the www.) and let them know.
I need to remove HTML from my browsers. How is this done please?
its not the html and you cannot remove HTML from a browser, cause there is nothing like that.. html is a language with is interpreted by browsers to give you output as a webpage... so whatever u see is thru browser's interperter ...
About the site where u see that cross, it must be due to some sorta missing plugin.. like flash plugin or java plugiun.. if you can share the site, it would be more clear to see what is the problem..
Also some times if the site is heavy u are on dialup(least chances) then some pictures being heavy cannot be downloaded and hence u see the red cross .. :)
hope this helps
cheers !
Reply:It is an error mildly associated with the HTML however you cannot remove HTML from your browser. HTML (Hyper Text Markup Language) is the final output language for all website, every single website uses HTML but some use other languages in the background to help them run.
The red cross you see is because the HTML is trying to get an image which doesn't exist, this could be because the incorrect file location has been entered or the image is corrupt or missing.
Your best bet is to contact the webmaster of the website (should be able to find some sort of contact details somewhere on the site) and let them know the problem you are experiencing. They will be happy to help as most webmasters pride their work and want everything to work perfectly.
Hope this is some help!
Reply:You've been misinformed. You state that (a) other folks can see the website pictures OK and (b) you can access other websites OK.
It is odd that you get the problem with 2 different browsers, were it just one then I could understand.
Why not add the website address to your question, it may then be possible to give an answer.
Reply:Either the images do not exist, or the paths to the files have changed under some circumstance (e.g. moving files around in the directory). Contact the webmaster and let them know that they have images on their site that are not working.
Reply:As mentioned previously HTML is a markup language that your browser interprets to display the web pages on your monitor or screen.
The most likely cause of the problem your experiencing is a bad link on the website itself. Some browsers are more particular then others when it comes to interpreting HTML.
There is one other thing you may want to look into though you should verify that your browser is not set to disable images and you have not disabled JavaScript in your browser as well.
You indicated that you do not experience this on any other site so odds are it is something wrong in the source code of the page your trying to view the images on.
Hope that helps
Kevin
The following are some of my personal web sites
http://www.lakeareawebs.com
http://mysticwarriorsofrage.com
http://vanguard.mysticwarriorsofrage.com
http://websinglesdating.com
Reply:I can confirm that most webmasters would be, if not happy, at least grateful to hear from you about their problem (and it is their problem, not yours), as we want everyone to be able to view what we have put up for you to see.
Sometimes we are presented with problems that seem very strange, and they can take a while to sort out, especially if they only occur on a few computers. So write to the webmaster, use the contact address on the site if there is one, or else to " webmaster AT the url " (leave out the www.) and let them know.
How to add a backgrounds to My Space profile page with HTML?
How do I get a background on MySpace profile page???? It says to use HTML and I am totally LOST Any Help would be GREATLY APPRICATED !!!!!!!
How to add a backgrounds to My Space profile page with HTML?
OK first you need to find a myspace layout or background you like, and there are plenty of websites for this. i recommend hot-lyts.com; mspremade.com; and ultimatemyspace.com. they are the best ones that i have come across so far. Next you need to find a layout on one of those websites. once you do, the website will have an HTML code for the layout. You need to copy that code, and paste it into the about me section under edit profile.
Hope this help
=]
if you have any question feel free to message me:D
Reply:Try this...put this link in your "about me" section
%26lt;body background="yourImageURLhere.jpg"%26gt;
Reply:if u are making ur own go to edit profil and in about me type in the code if u are using one from the internet find one nu like copy the code and past it into about me
all done
garden ridge
How to add a backgrounds to My Space profile page with HTML?
OK first you need to find a myspace layout or background you like, and there are plenty of websites for this. i recommend hot-lyts.com; mspremade.com; and ultimatemyspace.com. they are the best ones that i have come across so far. Next you need to find a layout on one of those websites. once you do, the website will have an HTML code for the layout. You need to copy that code, and paste it into the about me section under edit profile.
Hope this help
=]
if you have any question feel free to message me:D
Reply:Try this...put this link in your "about me" section
%26lt;body background="yourImageURLhere.jpg"%26gt;
Reply:if u are making ur own go to edit profil and in about me type in the code if u are using one from the internet find one nu like copy the code and past it into about me
all done
garden ridge
Does anyone know the HTML code to change your myspace top friends names?
Does anyone know the HTML code to change your myspace top friends names?
or know where I can find it?
Does anyone know the HTML code to change your myspace top friends names?
http://www.layoutstuff.com/friends
Reply:You can use this:
http://friends.skem9.com/
or know where I can find it?
Does anyone know the HTML code to change your myspace top friends names?
http://www.layoutstuff.com/friends
Reply:You can use this:
http://friends.skem9.com/
How to make HTML contents apprear at the center of the browser?
I am trying to make my form contents at the center of the browser irrespective of the browser size. For example, if the browser is reduced to half of the monitor size even after that contents should get 'centralized' to the broweser. I tried to make the contents in a table and then make the table center.
Any help/idea?
How to make HTML contents apprear at the center of the browser?
Yes simple what ever you insert tables, pictures use this code after %26lt;body%26gt;
%26lt;div align="center"%26gt;
after finishing all work use termination code to the page
%26lt;/div%26gt;
%26lt;/body%26gt;
this will align every thind at the center.
http://360.yahoo.com/jcbroogley
Reply:The most accepted way would be the %26lt;div align="center"%26gt; tag. Although you could also use %26lt;center%26gt; which is a shorter,faster but yet older way.
Reply:%26lt;center%26gt; tags
Reply:well the important thing is that you tried....
Reply:%26lt;div align="center%26gt; is probably the best, but i think its faster to use %26lt;center%26gt;
Any help/idea?
How to make HTML contents apprear at the center of the browser?
Yes simple what ever you insert tables, pictures use this code after %26lt;body%26gt;
%26lt;div align="center"%26gt;
after finishing all work use termination code to the page
%26lt;/div%26gt;
%26lt;/body%26gt;
this will align every thind at the center.
http://360.yahoo.com/jcbroogley
Reply:The most accepted way would be the %26lt;div align="center"%26gt; tag. Although you could also use %26lt;center%26gt; which is a shorter,faster but yet older way.
Reply:%26lt;center%26gt; tags
Reply:well the important thing is that you tried....
Reply:%26lt;div align="center%26gt; is probably the best, but i think its faster to use %26lt;center%26gt;
Friday, May 21, 2010
Why do some videos on YouTube appear to me on html?
I search a video, click on one, and sometimes the page shows up in HTML. I've tried cleaning cookies/history, but nothing seems to work. Any suggestions?
Why do some videos on YouTube appear to me on html?
try using a different browser. try mozilla firefox.. its the best by far
Reply:It shows up because of the codec that was used to encode the video. Whatever codec that it's encoded with, it's not compatible with streaming over the internet. The only way to view those videos is to right-click the link and select "save link as" in firefox so you can download it and watch it from your computer.
Why do some videos on YouTube appear to me on html?
try using a different browser. try mozilla firefox.. its the best by far
Reply:It shows up because of the codec that was used to encode the video. Whatever codec that it's encoded with, it's not compatible with streaming over the internet. The only way to view those videos is to right-click the link and select "save link as" in firefox so you can download it and watch it from your computer.
How do you transfer an image on your computer into HTML?
How do you transfer an image on my computer into HTML to use on myspace? I am kinda dumb at all this so please explain it as simple as possible. Thanks for taking the time to answer.
How do you transfer an image on your computer into HTML?
You cannot transfer an image into HTML.
In order to get it to show up on a website, you need to have the image in a web-hosted directory. After that, you use HTML to display the image on a web page using the 'img' tag.
Here's a W3C syntax guide...
http://www.w3schools.com/html/html_image...
Enjoy!
Reply:it is possible to embed an image into html, with word and frontpage, but it is preferable to just reference it via an %26lt;img src="image.jpg"%26gt; tag. that way you just replace the file and the browser shows the updated one.
Cheers
Reply:image must in the format jpeg. click on image%26amp;click right button on the mouse u will get porperties in porperty u will get open with
u will get option change click choose the internet explorer icon
if u have doubt ucan chat with me chandra_kanth_wd@yaho.com
Reply:uploaded onto a file holding website... like fileden or imageshack.com... i recommend imageshack... itz faster for other people to view...
get the direct link, and go to http://www.someicons.com/myspace-layout-...
then paste it in the blank and click generate code
^_^
flowers for algernon
How do you transfer an image on your computer into HTML?
You cannot transfer an image into HTML.
In order to get it to show up on a website, you need to have the image in a web-hosted directory. After that, you use HTML to display the image on a web page using the 'img' tag.
Here's a W3C syntax guide...
http://www.w3schools.com/html/html_image...
Enjoy!
Reply:it is possible to embed an image into html, with word and frontpage, but it is preferable to just reference it via an %26lt;img src="image.jpg"%26gt; tag. that way you just replace the file and the browser shows the updated one.
Cheers
Reply:image must in the format jpeg. click on image%26amp;click right button on the mouse u will get porperties in porperty u will get open with
u will get option change click choose the internet explorer icon
if u have doubt ucan chat with me chandra_kanth_wd@yaho.com
Reply:uploaded onto a file holding website... like fileden or imageshack.com... i recommend imageshack... itz faster for other people to view...
get the direct link, and go to http://www.someicons.com/myspace-layout-...
then paste it in the blank and click generate code
^_^
flowers for algernon
How can I speed up the page load time of a site done only in photoshop and html?
My page is completely done in Photoshop because I wanted to use unique fonts with strong smooth text. Whenever I optimize the page the quality suffers.
How can I speed up the page load time of a site done only in photoshop and html?
I highly, highly suggest you redo the page in XML, I'd even do it for you to save you the trouble haha. Ok, first of all, image maps and etc are just bad, they look nice, but take forever to load, so you are better off going completely flash.
The worse part though, is that search engines do NOT pickup text in images, so you keep a VERY low ranking. You can do a lot of cool stuff with XML, including the roll-overs and button effect while keeping as much actual text as possible. You can add some fonts into your CSS also....
Also, as you probably found out, when dealing with text as an image, a slight variation in quality can destroy it.
Reply:It's a horrible idea to design a webpage in photoshop. No wonder your page loads slow.
You might consider breaking the image up into slices to make it "appear" to load quicker.
How can I speed up the page load time of a site done only in photoshop and html?
I highly, highly suggest you redo the page in XML, I'd even do it for you to save you the trouble haha. Ok, first of all, image maps and etc are just bad, they look nice, but take forever to load, so you are better off going completely flash.
The worse part though, is that search engines do NOT pickup text in images, so you keep a VERY low ranking. You can do a lot of cool stuff with XML, including the roll-overs and button effect while keeping as much actual text as possible. You can add some fonts into your CSS also....
Also, as you probably found out, when dealing with text as an image, a slight variation in quality can destroy it.
Reply:It's a horrible idea to design a webpage in photoshop. No wonder your page loads slow.
You might consider breaking the image up into slices to make it "appear" to load quicker.
How do I change my monitor settings so that HTML looks the same on mt computer as it does on others?
MY laptop has a very wide screen. Whenever I go to a website, the text blogs aren't in the place they are supposed to be therefore making the website look very confusing to me. Is there any way I can fix that?
How do I change my monitor settings so that HTML looks the same on mt computer as it does on others?
Sounds more like you zoomed into the page.
In Internet Explorer 7:
Page %26gt; zoom %26gt; 100%
In Firefox/Mozilla:
View %26gt; Text size %26gt; normal
It should be similar in other browsers. Hope that helps.
Reply:This was my question and I forgot to say choose best answer but with anyone with this problem the answer chose by voters is not the correct one. Simon T gave me the correct answer so thank you and I am sorry I forgot to say choose as best answer! Report It
Reply:Do not open up your browser maximized. If you adjust the browser to have about a 4:3 aspect ratio then it will look the same as on a conventional monitor.
Reply:idk
How do I change my monitor settings so that HTML looks the same on mt computer as it does on others?
Sounds more like you zoomed into the page.
In Internet Explorer 7:
Page %26gt; zoom %26gt; 100%
In Firefox/Mozilla:
View %26gt; Text size %26gt; normal
It should be similar in other browsers. Hope that helps.
Reply:This was my question and I forgot to say choose best answer but with anyone with this problem the answer chose by voters is not the correct one. Simon T gave me the correct answer so thank you and I am sorry I forgot to say choose as best answer! Report It
Reply:Do not open up your browser maximized. If you adjust the browser to have about a 4:3 aspect ratio then it will look the same as on a conventional monitor.
Reply:idk
How do i upload a mp3 file to a html player?
Im trying do to it with microsoft live.
How do i upload a mp3 file to a html player?
There is no actual html player per say.
You link to the mp3 on your site via a link and hope the folks visiting have the .mp3 extender linked to their player.
This is what I have on my index.html page:
%26lt;center%26gt;
%26lt;script language="JavaScript" type="text/javascript"%26gt;
%26lt;!-- START HOME MUSIC CODE
if (navigator.appName == "Microsoft Internet Explorer") {
document.write('%26lt;bgsound src="adjcal.wav" LOOP="false"%26gt;');
}
else {
document.write('%26lt;embed height="16" width="100%" src="adjacl.wav" pluginspage="http://www.apple.com/quickt... type="video/quicktime" controller="true" autoplay="true"%26gt;%26lt;br%26gt;');
}
// End --%26gt;
%26lt;/script%26gt;
%26lt;/center%26gt;
It's a wav file because they are more commonly recognized. I just take my mp3 and convert it to wav for this purpose.
Sarge
Reply:Are you trying to host an audio file on the internet? Youtube has a way of uploading anything which will convert to FLV files.
The easiest way is use Windows movie maker and use the MP3 as background music. Then save as WMV . You can be creative and add images or text. or just a blank screen.
Reply:You can use The Music Hutch http://www.themusichutch.com/ to upload and search music and then copy the embed code into your website, blog, social network profile, etc.. You can add unlimited songs to your playlist.
Reply:i've never heard of an mp3 player application being coded in html...sorry.
are you meaning to say a web based mp3 player application??? if so, there should be an upload button or a browse button you'd hit to search your desktop for the file you want to upload/play.
Reply:I never heard of a Microsoft program that has anything to do with mp3 players. If you want something that you can make an mp3 player with and use html after, I recommend http://www.badongo.com
How do i upload a mp3 file to a html player?
There is no actual html player per say.
You link to the mp3 on your site via a link and hope the folks visiting have the .mp3 extender linked to their player.
This is what I have on my index.html page:
%26lt;center%26gt;
%26lt;script language="JavaScript" type="text/javascript"%26gt;
%26lt;!-- START HOME MUSIC CODE
if (navigator.appName == "Microsoft Internet Explorer") {
document.write('%26lt;bgsound src="adjcal.wav" LOOP="false"%26gt;');
}
else {
document.write('%26lt;embed height="16" width="100%" src="adjacl.wav" pluginspage="http://www.apple.com/quickt... type="video/quicktime" controller="true" autoplay="true"%26gt;%26lt;br%26gt;');
}
// End --%26gt;
%26lt;/script%26gt;
%26lt;/center%26gt;
It's a wav file because they are more commonly recognized. I just take my mp3 and convert it to wav for this purpose.
Sarge
Reply:Are you trying to host an audio file on the internet? Youtube has a way of uploading anything which will convert to FLV files.
The easiest way is use Windows movie maker and use the MP3 as background music. Then save as WMV . You can be creative and add images or text. or just a blank screen.
Reply:You can use The Music Hutch http://www.themusichutch.com/ to upload and search music and then copy the embed code into your website, blog, social network profile, etc.. You can add unlimited songs to your playlist.
Reply:i've never heard of an mp3 player application being coded in html...sorry.
are you meaning to say a web based mp3 player application??? if so, there should be an upload button or a browse button you'd hit to search your desktop for the file you want to upload/play.
Reply:I never heard of a Microsoft program that has anything to do with mp3 players. If you want something that you can make an mp3 player with and use html after, I recommend http://www.badongo.com
What is a good website that shows you basic HTML stuff for myspace?
Like adding hearts and diamonds in text. Or making scroll boxes. Or falling objects. Or font techniques like changing the size of a font or color or type, like in bullitens and stuff. What is a good site for cool things like countdowns or a little widgets and stuff like that? Thanks a lot!
What is a good website that shows you basic HTML stuff for myspace?
no, no, no.
the best place in the WORLD for myspace is www.createblog.com. there are also layouts, pictures, etc (i dont use them), but anyway..go there, go to "scripts" at the top, then click on "myspace scripts."
theres like 20 pages full of diff. codes for your page. you'll have to dig, but i've never not found what i want for my page there.
Reply:http://www.abrax.us/bbz/
http://bbzspace.com/
Reply:Go to www.pimpmyprofile.com
They have a ton of pre-made layouts that you can choose from. In addition, you can easily change text, backgrounds, pictures, etc. My wife and I just did our MySpace page using this, and it was super easy. Here's a reference:
www.myspace.com/ache2bake
Reply:www.revolutionmyspace.com is great some of the layouts have falling icons of that layout
business cards
What is a good website that shows you basic HTML stuff for myspace?
no, no, no.
the best place in the WORLD for myspace is www.createblog.com. there are also layouts, pictures, etc (i dont use them), but anyway..go there, go to "scripts" at the top, then click on "myspace scripts."
theres like 20 pages full of diff. codes for your page. you'll have to dig, but i've never not found what i want for my page there.
Reply:http://www.abrax.us/bbz/
http://bbzspace.com/
Reply:Go to www.pimpmyprofile.com
They have a ton of pre-made layouts that you can choose from. In addition, you can easily change text, backgrounds, pictures, etc. My wife and I just did our MySpace page using this, and it was super easy. Here's a reference:
www.myspace.com/ache2bake
Reply:www.revolutionmyspace.com is great some of the layouts have falling icons of that layout
business cards
What are the best online sources that offer free advice and tutorials for creating a website using html?
I like to learn the basics of creating a site using technical skills I hope to learn. Of course, I don't mean pickzo, myspace, or blogging.
Thanks for your time and feedback.
What are the best online sources that offer free advice and tutorials for creating a website using html?
Try this site, The hosting is very in-expensive and the service is great, I host my own site with it. They also have a SiteBuilder which can be used to design your site
http://www.hostmonster.com/track/kdiskco...
Reply:http://www.htmlgoodies.com/
http://www.2createawebsite.com/
Thanks for your time and feedback.
What are the best online sources that offer free advice and tutorials for creating a website using html?
Try this site, The hosting is very in-expensive and the service is great, I host my own site with it. They also have a SiteBuilder which can be used to design your site
http://www.hostmonster.com/track/kdiskco...
Reply:http://www.htmlgoodies.com/
http://www.2createawebsite.com/
How to lock html source code for my website?
I am building a website and password is necessary. I notice that I can simply create password section. However, the password will be easily seen because everyone can find it from the source code. Anyone knows how to lock the html so that no one can see it?
How to lock html source code for my website?
Since HTML is actually decoded on the local browser, there is no way to block the viewing of this. Web pages are downloaded from the server and onto the computer that is viewing them. Once on the computer, it simply becomes another file.
One thing I would suggest is learning a server-side programming language, such as PHP or ASP. The code of these pages is processed by the web server and the result of the code is sent via HTML to the viewing computer.
So, if you had a PHP file which basically followed the following logic (note this is not actual PHP code):
'If password entered = "password" then display picture.jpg'
All the user on the site would see would be the HTML code to display the picture.
birthday cards
How to lock html source code for my website?
Since HTML is actually decoded on the local browser, there is no way to block the viewing of this. Web pages are downloaded from the server and onto the computer that is viewing them. Once on the computer, it simply becomes another file.
One thing I would suggest is learning a server-side programming language, such as PHP or ASP. The code of these pages is processed by the web server and the result of the code is sent via HTML to the viewing computer.
So, if you had a PHP file which basically followed the following logic (note this is not actual PHP code):
'If password entered = "password" then display picture.jpg'
All the user on the site would see would be the HTML code to display the picture.
birthday cards
What is the html to put shadow behind letters?
There is html for that right? lol I know a bit, but not much!
What is the html to put shadow behind letters?
no way to do that. to do that you should use photoshop to make a picture with the right design and then insert it in the page as a %26lt;img src="imagesrc" width="with" height="height"%26gt;
the width and height must be in pixels.
Reply:The best I have seen so far is a simple CSS trick, where the text is repeated twice. Once with the regular color, and once with a slight offset and a medium gray color. This is simple, but does require the repetition of the text.
http://www.scottjehl.com/v7/index.php/pr...
Reply:I think what you are looking for is the html code for text-shadow. it's kind of hard to explain here, but if you go to the following link, there are html codes on that page you can use for text-shadows. if you aren't familiar with using html code, be sure to read all the way thru the article. ;)
http://www.workingwith.me.uk/articles/cs...
What is the html to put shadow behind letters?
no way to do that. to do that you should use photoshop to make a picture with the right design and then insert it in the page as a %26lt;img src="imagesrc" width="with" height="height"%26gt;
the width and height must be in pixels.
Reply:The best I have seen so far is a simple CSS trick, where the text is repeated twice. Once with the regular color, and once with a slight offset and a medium gray color. This is simple, but does require the repetition of the text.
http://www.scottjehl.com/v7/index.php/pr...
Reply:I think what you are looking for is the html code for text-shadow. it's kind of hard to explain here, but if you go to the following link, there are html codes on that page you can use for text-shadows. if you aren't familiar with using html code, be sure to read all the way thru the article. ;)
http://www.workingwith.me.uk/articles/cs...
How do I make an offline search engine for my html page?
I want to add a search engine to my (currently offline) web page that will search within all the pages(.html files) within the folder where the index is.
How do I make an offline search engine for my html page?
yr going 2 have to download the whole website like images and links on it, and if it has many links, it probably wont work
How do I make an offline search engine for my html page?
yr going 2 have to download the whole website like images and links on it, and if it has many links, it probably wont work
How can I quickly convert a bunch of text into paragraphs surrounded by <p> tags in an HTML document?
Perhaps with a freeware or jedit extension or something...
Anything free and efficient is fine.
I have a bunch of text that I would like to divide into paragraphs by lines.
How can I quickly convert a bunch of text into paragraphs surrounded by %26lt;p%26gt; tags in an HTML document?
Use a simple text editor - beware of WORD or other complex apps, as they may stuff things up by 'helping' you.
I use EditPlus - shareware - I bought it, it's so good - http://www.editplus.com
You should only have the paragraphs separated by newline newline chars (i.e. 2 of them).
Do a global substitution.
Replace newline newline
with %26lt;/p%26gt;newline newline%26lt;p%26gt;
or you can just use %26lt;/p%26gt;newline%26lt;p%26gt;
(Hope I typed that right!)
Reply:You can use the powerful tool "Replace Pioneer" just released this month.
It can replace text very flexible, you can define your own paragragh delimiter. The help file of Replace Pioneer itself is convert from a text file by adding %26lt;p%26gt; and %26lt;/p%26gt; in each line.
Using Replace Pioneer, you will find more surprises.
You can download it at http://www.mind-pioneer.com
If you can not resolve your issue by yourself, you can enter your question in "Service/My Comments" page of the www.mind-pioneer.com.
The "Four Greate Invention" of Replace Pioneer:
1) Find text much more accurate:
Support maximum 7 level filters in pattern match:
* Paragraph pattern filter: user can select only desired paragraph by
pattern matching.
* Paragraph range filter: among the matched paragraphs, user can
select a range to replace.
* Line pattern filter: user can select only desired line by pattern
matching.
* Line range filter: among the matched lines, user can select a range
to replace.
* Pattern filter: user can find final replace items by this pattern
matching.
* Range filter: among the matched items, user still can select a
range to replace.
* Condition filter: the additional powerful condition filter is to
remove unwanted result, make replace more accurate.
2) Replace text much more flexible:
Support user-defined transformation of replace text instead of fixed
text. The software can replace the found text with any self-defined
conversion, which make it easier to support flexible context-related
replacement. A lot of variables and functions are provided to support
the conversion.
3) File input/output much more powerful:
Support file spliting and merging in horizontal and vertical
direction.
Support Web Page and DOS command result as input file type.
Support UNICODE and Most of the other Encoding types.
4) Operation much more easier and reliable:
Recording and re-running scheme make replace and script creating work
much more easier, and detail recorded and highlighted change make
software much more reliable.
Anything free and efficient is fine.
I have a bunch of text that I would like to divide into paragraphs by lines.
How can I quickly convert a bunch of text into paragraphs surrounded by %26lt;p%26gt; tags in an HTML document?
Use a simple text editor - beware of WORD or other complex apps, as they may stuff things up by 'helping' you.
I use EditPlus - shareware - I bought it, it's so good - http://www.editplus.com
You should only have the paragraphs separated by newline newline chars (i.e. 2 of them).
Do a global substitution.
Replace newline newline
with %26lt;/p%26gt;newline newline%26lt;p%26gt;
or you can just use %26lt;/p%26gt;newline%26lt;p%26gt;
(Hope I typed that right!)
Reply:You can use the powerful tool "Replace Pioneer" just released this month.
It can replace text very flexible, you can define your own paragragh delimiter. The help file of Replace Pioneer itself is convert from a text file by adding %26lt;p%26gt; and %26lt;/p%26gt; in each line.
Using Replace Pioneer, you will find more surprises.
You can download it at http://www.mind-pioneer.com
If you can not resolve your issue by yourself, you can enter your question in "Service/My Comments" page of the www.mind-pioneer.com.
The "Four Greate Invention" of Replace Pioneer:
1) Find text much more accurate:
Support maximum 7 level filters in pattern match:
* Paragraph pattern filter: user can select only desired paragraph by
pattern matching.
* Paragraph range filter: among the matched paragraphs, user can
select a range to replace.
* Line pattern filter: user can select only desired line by pattern
matching.
* Line range filter: among the matched lines, user can select a range
to replace.
* Pattern filter: user can find final replace items by this pattern
matching.
* Range filter: among the matched items, user still can select a
range to replace.
* Condition filter: the additional powerful condition filter is to
remove unwanted result, make replace more accurate.
2) Replace text much more flexible:
Support user-defined transformation of replace text instead of fixed
text. The software can replace the found text with any self-defined
conversion, which make it easier to support flexible context-related
replacement. A lot of variables and functions are provided to support
the conversion.
3) File input/output much more powerful:
Support file spliting and merging in horizontal and vertical
direction.
Support Web Page and DOS command result as input file type.
Support UNICODE and Most of the other Encoding types.
4) Operation much more easier and reliable:
Recording and re-running scheme make replace and script creating work
much more easier, and detail recorded and highlighted change make
software much more reliable.
What are the differences between java script and html links?
How do they related in terms to legacy links? Maintenance? Loading time? Any and everything else?
What are the differences between java script and html links?
HTML is a language that creates all the beautifull colors in a webpage, and it helps you put the objects in place, replace backgrounds.. But Javascript is a small programming languages that can be used in an HTML page, but you can't make Javascript pages, javascript is used to create an active interface like webforms or to solve some internet problems.. It's a small interactive program online if this makes it more clear.
For the loading time well there is no difference since you can't have a javascript page with HTML as the base.
Reply:You can do some interesting things with them, for instance opening the link in a new browser window without a status bar, address bar, buttons, etc.
The only major concern I can think of is that really old browsers just don't support JavaScript at all and won't even parse the scripts, let alone follow the links properly.
Reply:There are only HTML links, anchors.
You might want to rephrase the question.
Reply:If you want to rank good on the search engines stay away form generating links through JavaScript as long as it is possible. JavaScript generated links can be dynamic while HTML links are always static.
http://www.cybertopcops.com
sepal
What are the differences between java script and html links?
HTML is a language that creates all the beautifull colors in a webpage, and it helps you put the objects in place, replace backgrounds.. But Javascript is a small programming languages that can be used in an HTML page, but you can't make Javascript pages, javascript is used to create an active interface like webforms or to solve some internet problems.. It's a small interactive program online if this makes it more clear.
For the loading time well there is no difference since you can't have a javascript page with HTML as the base.
Reply:You can do some interesting things with them, for instance opening the link in a new browser window without a status bar, address bar, buttons, etc.
The only major concern I can think of is that really old browsers just don't support JavaScript at all and won't even parse the scripts, let alone follow the links properly.
Reply:There are only HTML links, anchors.
You might want to rephrase the question.
Reply:If you want to rank good on the search engines stay away form generating links through JavaScript as long as it is possible. JavaScript generated links can be dynamic while HTML links are always static.
http://www.cybertopcops.com
sepal
Is there a simple way to convert dynamic html on a webpage to pdf for a user to print?
For example, if someone were to fill out one page online (that doesn't look like a form and isn't part of a wizard) and then that page convert to pdf for them to print.
Is there a simple way to convert dynamic html on a webpage to pdf for a user to print?
download FreePrimo from internet and install it. it will install a printer for you. then print your HTML page using this printer.
G'luck!
Reply:On a webserver? Try PDFlib at http://www.pdflib.com
There is a php version at http://pecl.php.net/package/pdflib
For end users: print the page in the web-browser
Is there a simple way to convert dynamic html on a webpage to pdf for a user to print?
download FreePrimo from internet and install it. it will install a printer for you. then print your HTML page using this printer.
G'luck!
Reply:On a webserver? Try PDFlib at http://www.pdflib.com
There is a php version at http://pecl.php.net/package/pdflib
For end users: print the page in the web-browser
How can I create a countdown timer in html?
I want to make a timer count down to my birthday (June 25), so I can put it in my sig for a forum, and everywere I looked, it didnt work out.
Can someone tell me how to create this countdown, or give the script to me already made?
How can I create a countdown timer in html?
Here is one example:
http://www.hashemian.com/tools/javascrip...
Can someone tell me how to create this countdown, or give the script to me already made?
How can I create a countdown timer in html?
Here is one example:
http://www.hashemian.com/tools/javascrip...
What HTML code do you use to get your personalized icon to show up in tabbed browsing?
For instance, this website has an icon that shows up beside the web address and on the very left side of the tab. I'de search for this on Google, but I don't know what the icon is called, so its hard to find results. Thanks in advance for your help.
What HTML code do you use to get your personalized icon to show up in tabbed browsing?
They are called "Favicons". It is very simple to add one. Just replace MYFAVICON with the location of the icon you want to use.
%26lt;link rel="shortcut icon" href="MYFAVICON.ico"%26gt;
Reply:you need a favicon
http://favicon.com/
What HTML code do you use to get your personalized icon to show up in tabbed browsing?
They are called "Favicons". It is very simple to add one. Just replace MYFAVICON with the location of the icon you want to use.
%26lt;link rel="shortcut icon" href="MYFAVICON.ico"%26gt;
Reply:you need a favicon
http://favicon.com/
Another javascript:) How do you write a script that asks someone to enter 2 numbers, and outputs HTML text tha
Another javascript:) How do you write a script that asks someone to enter 2 numbers, and outputs HTML text that displays the larger number followed by the words"is larger" in an information message dialog?
Another javascript:) How do you write a script that asks someone to enter 2 numbers, and outputs HTML text tha
If the two inputted numbers are guaranteed not to be equal, you can do something like this.
var int_1 = Number( prompt( "Enter first number.",""));
var int_2 = Number( prompt( "Enter secod number.",""));
if( int_2 %26gt; int_1) {
int_1 ^= int_2;
int_2 ^= int_1;
int_1 ^= int_2;
}
alert( int_1 + " is larger than " + int_2 + ".");
** Notes **
The part in the IF statement is a very old school method of swapping two variables using a NOR operator. This example requires that one number be larger than the other. If you need to test for equality then use this example.
var int_1 = Number( prompt( "Enter first number.",""));
var int_2 = Number( prompt( "Enter secod number.",""));
var descr = " larger than ";
if( int_2 %26gt; int_1) {
int_1 ^= int_2;
int_2 ^= int_1;
int_1 ^= int_2;
} else if (int_1 == int_2) {
descr = " equal to ";
}
alert( int_1 + " is " + descr + int_2 + ".");
** More Notes **
You'll notice that I encased the Prompts inside of Number(). Although not always required, it is good programming practice to explicitly cast a numeric value from a Prompt. A Prompt command returns a String value so you can't perform any mathematical operations on the values it returns.
Remove the Number() from the above examples and try adding the two variables together.
alert( int_1 + int_2);
You'll find that it only concatenates the two String values and does not add them together as you may have expected.
Reply:This is easy:
%26lt;script%26gt;
var a = prompt("Enter a number","");
var b = prompt("Enter another number","");
if(a %26gt; b)
{
alert(a + " is bigger then " + b);
}else
{
if(a == b)
{
alert("They are equal!");
}else
{
alert(b + " is bigger then " + a);
}
}
%26lt;/script%26gt;
I tested this.
If you need more help I would be happy to answer just post!
Enjoy!
printable cards
Another javascript:) How do you write a script that asks someone to enter 2 numbers, and outputs HTML text tha
If the two inputted numbers are guaranteed not to be equal, you can do something like this.
var int_1 = Number( prompt( "Enter first number.",""));
var int_2 = Number( prompt( "Enter secod number.",""));
if( int_2 %26gt; int_1) {
int_1 ^= int_2;
int_2 ^= int_1;
int_1 ^= int_2;
}
alert( int_1 + " is larger than " + int_2 + ".");
** Notes **
The part in the IF statement is a very old school method of swapping two variables using a NOR operator. This example requires that one number be larger than the other. If you need to test for equality then use this example.
var int_1 = Number( prompt( "Enter first number.",""));
var int_2 = Number( prompt( "Enter secod number.",""));
var descr = " larger than ";
if( int_2 %26gt; int_1) {
int_1 ^= int_2;
int_2 ^= int_1;
int_1 ^= int_2;
} else if (int_1 == int_2) {
descr = " equal to ";
}
alert( int_1 + " is " + descr + int_2 + ".");
** More Notes **
You'll notice that I encased the Prompts inside of Number(). Although not always required, it is good programming practice to explicitly cast a numeric value from a Prompt. A Prompt command returns a String value so you can't perform any mathematical operations on the values it returns.
Remove the Number() from the above examples and try adding the two variables together.
alert( int_1 + int_2);
You'll find that it only concatenates the two String values and does not add them together as you may have expected.
Reply:This is easy:
%26lt;script%26gt;
var a = prompt("Enter a number","");
var b = prompt("Enter another number","");
if(a %26gt; b)
{
alert(a + " is bigger then " + b);
}else
{
if(a == b)
{
alert("They are equal!");
}else
{
alert(b + " is bigger then " + a);
}
}
%26lt;/script%26gt;
I tested this.
If you need more help I would be happy to answer just post!
Enjoy!
printable cards
How can i draw a horizontal line in html?
I want to use it as a divider line. How can i draw it with light blue or light green color?
How can i draw a horizontal line in html?
%26lt;HR color=green%26gt;%26lt;/HR%26gt;
Reply:best free,open source software,project,library,code in java
http://best-java-source.bizdrv.com/
Reply:Using archaic HTML, %26lt;hr color="green"%26gt;
Using W3 standards compliant HTML %26lt;hr style="color: #0F0;" /%26gt;
How can i draw a horizontal line in html?
%26lt;HR color=green%26gt;%26lt;/HR%26gt;
Reply:best free,open source software,project,library,code in java
http://best-java-source.bizdrv.com/
Reply:Using archaic HTML, %26lt;hr color="green"%26gt;
Using W3 standards compliant HTML %26lt;hr style="color: #0F0;" /%26gt;
Any idea which software is the best to make html websites and also tells you how to use it?
i don't know how to make websites using html, not templates, and want to learn how. I also want to know which software helps the best to do this and how to get. If you don't know that, could you tell me where i could get tutorials online?
Any idea which software is the best to make html websites and also tells you how to use it?
there as several programs for purchase that can produse web pages, with products from macromedia bieng veery prominent.
you can also make web pages in notepad if you know html, and it is possible even to create web pages in MS Word. (set your view to web view, and save as htm/html file when finished)
Reply:dremweaver is the best. there is also netobjects that I have heard is nearly as good. just type in the prgram + tutorials into google but dreamweaver's help is very useful and it is a pretty self-explanatory program.
heaps of dreamweaver tutorials here
http://www.webthang.co.uk/tuts/tutorial....
hope this helps
Reply:You should use Joomla it is open source and all free. It also has great support. Here is my Joomla site www.zigs-stuff.org
Any idea which software is the best to make html websites and also tells you how to use it?
there as several programs for purchase that can produse web pages, with products from macromedia bieng veery prominent.
you can also make web pages in notepad if you know html, and it is possible even to create web pages in MS Word. (set your view to web view, and save as htm/html file when finished)
Reply:dremweaver is the best. there is also netobjects that I have heard is nearly as good. just type in the prgram + tutorials into google but dreamweaver's help is very useful and it is a pretty self-explanatory program.
heaps of dreamweaver tutorials here
http://www.webthang.co.uk/tuts/tutorial....
hope this helps
Reply:You should use Joomla it is open source and all free. It also has great support. Here is my Joomla site www.zigs-stuff.org
How do I set special character for html list item?
Hello,
I want to create a ul, and I want the bullets style to be special character, like '%26gt;'. Is there any way defining bullet style to be special character or I have to use image?
How do I set special character for html list item?
Use the special character names or entity to add these to your list. You will have to turn off the default list style:
li { list-style-type: none }
Then for each:
%26lt;ul%26gt;
%26lt;li%26gt;%26amp; lt; Inserted spaces for entity to show here %26amp; gt;%26lt;/li%26gt;
%26lt;/ul%26gt;
For a list of different entities:
http://www.mozilla.org/newlayout/testcas...
http://htmlhelp.com/reference/html40/ent...
http://htmlhelp.com/reference/html40/ent...
http://www.alanwood.net/demos/ent4_frame...
Ron
Reply:Using an image would give you more control.
I want to create a ul, and I want the bullets style to be special character, like '%26gt;'. Is there any way defining bullet style to be special character or I have to use image?
How do I set special character for html list item?
Use the special character names or entity to add these to your list. You will have to turn off the default list style:
li { list-style-type: none }
Then for each:
%26lt;ul%26gt;
%26lt;li%26gt;%26amp; lt; Inserted spaces for entity to show here %26amp; gt;%26lt;/li%26gt;
%26lt;/ul%26gt;
For a list of different entities:
http://www.mozilla.org/newlayout/testcas...
http://htmlhelp.com/reference/html40/ent...
http://htmlhelp.com/reference/html40/ent...
http://www.alanwood.net/demos/ent4_frame...
Ron
Reply:Using an image would give you more control.
How do I open html file with Safari (for Windows) that is located on my computer?
I've just installed Safari browser for Windows, but can't figure out how to open a HTML file (located on my computer). On my desktop I have a HTML file. So, I right click on it and select Open With... (Safari). But for some reason Safari does not do it. By default it uses http:// ... Anyone know how to do it? Thanks.
How do I open html file with Safari (for Windows) that is located on my computer?
From Safari Choose Edit menu and Click on Preferences. In the General Tab choose Safari as Default Web Browser.
Although it is a very fast browser, I don't recommend to use Safari as you default html files. It crashes constantly and many windows shortcuts don't work on Safari. I hope the next release will be much better.
Reply:Start with wha it does as a default, if it opens internet explorer or your html editor program and that'll give you a heads up as to what the file really is. Most html files are just shorcuts to websites but some may be files that are a webpage design or info and if the connected files are not there then you really have nothing. For instance if you open a word document and select to save it as a webpage, it will give the document an htm or html extension, but it will still generally open in word (or whatever program you used to create it).....however if you select to save the document as a a complete webpage then not only does it save the main document as an htm or html file but also creates a folder that has all the reference info for the "page" you just created, and without that folder, nothing shows up. If its a shortcut then you may have to change the default file behaviour or at least set safari as your default browser......possibly check the properties of the html file and see if it refers to a webpage then copy that url and paste it into the safari browsers adress bar and resave it from within safari.
Reply:try associating your HTML files with the Safari browser
Reply:Not sure about Safari but I guess it could be done like this:
Open the browser then
File%26gt;%26gt;Open%26gt;%26gt;(navigate to your file)
love song lyrics
How do I open html file with Safari (for Windows) that is located on my computer?
From Safari Choose Edit menu and Click on Preferences. In the General Tab choose Safari as Default Web Browser.
Although it is a very fast browser, I don't recommend to use Safari as you default html files. It crashes constantly and many windows shortcuts don't work on Safari. I hope the next release will be much better.
Reply:Start with wha it does as a default, if it opens internet explorer or your html editor program and that'll give you a heads up as to what the file really is. Most html files are just shorcuts to websites but some may be files that are a webpage design or info and if the connected files are not there then you really have nothing. For instance if you open a word document and select to save it as a webpage, it will give the document an htm or html extension, but it will still generally open in word (or whatever program you used to create it).....however if you select to save the document as a a complete webpage then not only does it save the main document as an htm or html file but also creates a folder that has all the reference info for the "page" you just created, and without that folder, nothing shows up. If its a shortcut then you may have to change the default file behaviour or at least set safari as your default browser......possibly check the properties of the html file and see if it refers to a webpage then copy that url and paste it into the safari browsers adress bar and resave it from within safari.
Reply:try associating your HTML files with the Safari browser
Reply:Not sure about Safari but I guess it could be done like this:
Open the browser then
File%26gt;%26gt;Open%26gt;%26gt;(navigate to your file)
love song lyrics
Does anyone know how to get HTML back on eBay?
Ebay changed their listing format and the HTML tab is no longer available! I typed HTML codes directly into the auction description but is shows up as code, not how it should show up. Ebay just changed their format and I cannot figure out how to get the HTML option back. Anyone know?
Does anyone know how to get HTML back on eBay?
From what I see on their site they do allow HTML but only certain tags and everything else is restricted. Perhaps they have further restricted it to no HTML tags but I don't see ebay doing that just yet. They are probably trying to curb abuses of this feature for executing misc code and spreading viruses.
Below is a link outlining what kind of HTML they don't allow as well as types of javascript.
Hope this helps.
Does anyone know how to get HTML back on eBay?
From what I see on their site they do allow HTML but only certain tags and everything else is restricted. Perhaps they have further restricted it to no HTML tags but I don't see ebay doing that just yet. They are probably trying to curb abuses of this feature for executing misc code and spreading viruses.
Below is a link outlining what kind of HTML they don't allow as well as types of javascript.
Hope this helps.
How do you put flash buttons into html websites? Also, how do you make that button into a link?
Im using Adobe Flash CS3 Professional. I'm doing this for a computer project at school. Any help would be greatly appreciated.
How do you put flash buttons into html websites? Also, how do you make that button into a link?
You would probably need to use an embed tag, like:
%26lt;embed src="filenamehereand.extension" type="application/x-shockwave-flash" wmode="transparent"%26gt;%26lt;/embed%26gt;
if that doesn't work, try this:
%26lt;object%26gt;%26lt;param name="movie" value="filenamehereand.extension"%26gt;%26lt;/para... name="wmode" value="transparent"%26gt;%26lt;/param%26gt;%26lt;embed src="filenamehereand.extension" type="application/x-shockwave-flash" wmode="transparent"%26gt;%26lt;/embed%26gt;%26lt;/object%26gt;
You can also add width and height to the opening object tag, and the end of the opening embed tag.
How do you put flash buttons into html websites? Also, how do you make that button into a link?
You would probably need to use an embed tag, like:
%26lt;embed src="filenamehereand.extension" type="application/x-shockwave-flash" wmode="transparent"%26gt;%26lt;/embed%26gt;
if that doesn't work, try this:
%26lt;object%26gt;%26lt;param name="movie" value="filenamehereand.extension"%26gt;%26lt;/para... name="wmode" value="transparent"%26gt;%26lt;/param%26gt;%26lt;embed src="filenamehereand.extension" type="application/x-shockwave-flash" wmode="transparent"%26gt;%26lt;/embed%26gt;%26lt;/object%26gt;
You can also add width and height to the opening object tag, and the end of the opening embed tag.
How can I convert a Excel file into HTML format?
I have an Excel file thatis a database with names and phone numbers. I have put in a few Combo boxes, Command buttons, macros and lots of formulas. I made it for easy "lookup and refenrence". First I choose the last name in a combo box and then the second combo box has all the first names with that last name and I pick one, to see that persons phone numbers. I want to put it into another format (HTML preferred) so that when I distribute this list the user does not have to have MS Excel in his computer. How and to what format should I convert this?
How can I convert a Excel file into HTML format?
The only way I know is with:-
http://office.microsoft.com/en-us/market...
BUT, I haven't tried it personnally.
How can I convert a Excel file into HTML format?
The only way I know is with:-
http://office.microsoft.com/en-us/market...
BUT, I haven't tried it personnally.
How can I make a document into an HTML code?
I made a collage using my word program, and I want to make it into an HTML code so I can upload it on Myspace. If it was a picture, I would just upload it on photobucket, but it is in the wrong format.
Help?
How can I make a document into an HTML code?
Print screen %26gt; Paste into (paint?) %26gt; Crop %26gt; Save %26gt; Upload.
Reply:save it as a .html file basically add dot (as in the symbol period) and html and save it as that.
One example would be:
File!.html
good luck!
greeting cards
Help?
How can I make a document into an HTML code?
Print screen %26gt; Paste into (paint?) %26gt; Crop %26gt; Save %26gt; Upload.
Reply:save it as a .html file basically add dot (as in the symbol period) and html and save it as that.
One example would be:
File!.html
good luck!
greeting cards
Javascript - How to create HTML and send to textareas on another site's form?
Hi. I'm a little clueless about Javascript, so I need some help.
What I want to do is create a page where a user can get a customized snippet of HTML that has user-chosen stuff through a color picker and drop-down menus, and then either display the result in a textarea, or better yet, send the code directly to the website form fields automatically.
The page the user sees can only use HTML %26amp; Javascript, unfortunately.
Anybody know how I could accomplish this (or find someone/someplace I could find out from)?
Javascript - How to create HTML and send to textareas on another site's form?
I'm having a little difficulty understanding the question but I'll give it a shot. Here's how I understand the issues:
1. You want to access some "user-chosen stuff" using JavaScript (such as a drop-down menu)
2. You want to use JavaScript to write to a textarea
3. You want to send some text to a different website
First, to access your "user-chosen stuff", you'll need to be a little more specific because it varies depending on what the "stuff" is. If you have a drop-down menu (AKA a %26lt;select%26gt; form element), you access its selected values with JavaScript like this:
%26lt;form action="somepage.ext" method="get" onsubmit="return doStuff(this);"%26gt;
%26lt;select name="drpdown"%26gt;
%26lt;option value="1"%26gt;First%26lt;/option%26gt;
%26lt;option value="2"%26gt;Second%26lt;/option%26gt;
%26lt;option value="3"%26gt;Third%26lt;/option%26gt;
%26lt;/select%26gt;
%26lt;input type="submit" value="Do Stuff" /%26gt;
%26lt;/form%26gt;
%26lt;script type="text/javascript"%26gt;
function doStuff(f) {
alert("You chose: " + f.drpdown[ f.drpdown.selectedIndex ].text+ " (" + f.drpdown[ f.drpdown.selectedIndex ].value + ")");
return false; // returning false stops the form from submitting
}
%26lt;/script%26gt;
Next, to write to a textarea, you do the same thing you would when writing to other form fields:
%26lt;form%26gt;
%26lt;textarea name="someText"%26gt;%26lt;/textarea%26gt;
%26lt;/form%26gt;
%26lt;script type="text/javascript"%26gt;
var df = document.forms[0];
if(df %26amp;%26amp; df.someText) {
df.someText.value = "your code goes here.";
}
%26lt;/script%26gt;
The last problem can be tricky because you may be dealing with security issues due to Cross Site Scripting limitations. I would need more information to know for sure what you are trying to do. The solution could be so easy that you just submit the form, using either the GET or POST method, to the remote site. If you are trying to access a remote site (as in, not from the same domain as your page) using JavaScript, forget it. There are ways to do that: using AJAX and a proxy, JSON, the Greasemonkey extension to Firefox, and other obscure techniques; but they are too hard to explain to someone who is new to JavaScript. It's much easier to use a frame or a target="_blank" in your form element and then just execute the document.forms[0].submit() method.
If you're still confused, send me an e-mail (in profile) and I'll try to help you out. Good luck.
What I want to do is create a page where a user can get a customized snippet of HTML that has user-chosen stuff through a color picker and drop-down menus, and then either display the result in a textarea, or better yet, send the code directly to the website form fields automatically.
The page the user sees can only use HTML %26amp; Javascript, unfortunately.
Anybody know how I could accomplish this (or find someone/someplace I could find out from)?
Javascript - How to create HTML and send to textareas on another site's form?
I'm having a little difficulty understanding the question but I'll give it a shot. Here's how I understand the issues:
1. You want to access some "user-chosen stuff" using JavaScript (such as a drop-down menu)
2. You want to use JavaScript to write to a textarea
3. You want to send some text to a different website
First, to access your "user-chosen stuff", you'll need to be a little more specific because it varies depending on what the "stuff" is. If you have a drop-down menu (AKA a %26lt;select%26gt; form element), you access its selected values with JavaScript like this:
%26lt;form action="somepage.ext" method="get" onsubmit="return doStuff(this);"%26gt;
%26lt;select name="drpdown"%26gt;
%26lt;option value="1"%26gt;First%26lt;/option%26gt;
%26lt;option value="2"%26gt;Second%26lt;/option%26gt;
%26lt;option value="3"%26gt;Third%26lt;/option%26gt;
%26lt;/select%26gt;
%26lt;input type="submit" value="Do Stuff" /%26gt;
%26lt;/form%26gt;
%26lt;script type="text/javascript"%26gt;
function doStuff(f) {
alert("You chose: " + f.drpdown[ f.drpdown.selectedIndex ].text+ " (" + f.drpdown[ f.drpdown.selectedIndex ].value + ")");
return false; // returning false stops the form from submitting
}
%26lt;/script%26gt;
Next, to write to a textarea, you do the same thing you would when writing to other form fields:
%26lt;form%26gt;
%26lt;textarea name="someText"%26gt;%26lt;/textarea%26gt;
%26lt;/form%26gt;
%26lt;script type="text/javascript"%26gt;
var df = document.forms[0];
if(df %26amp;%26amp; df.someText) {
df.someText.value = "your code goes here.";
}
%26lt;/script%26gt;
The last problem can be tricky because you may be dealing with security issues due to Cross Site Scripting limitations. I would need more information to know for sure what you are trying to do. The solution could be so easy that you just submit the form, using either the GET or POST method, to the remote site. If you are trying to access a remote site (as in, not from the same domain as your page) using JavaScript, forget it. There are ways to do that: using AJAX and a proxy, JSON, the Greasemonkey extension to Firefox, and other obscure techniques; but they are too hard to explain to someone who is new to JavaScript. It's much easier to use a frame or a target="_blank" in your form element and then just execute the document.forms[0].submit() method.
If you're still confused, send me an e-mail (in profile) and I'll try to help you out. Good luck.
Where can I find a free chat html for my website?
I have a website and I want to put one of those chat boxes on. It has to be html that I can copy and I want it to be private. Please don't write things like i don't know. Be serious!
Where can I find a free chat html for my website?
you can meebo chat widget to your home page. Instructions on how to achieve this goes here:-
http://library.csun.edu/aklein/meebo.htm...
Reply:http://www.cbox.ws/
Reply:You can google "HTML Chat Boxes"... but there are some that I have used in the past that are acceptional.
I recommend using Xat (Link is in my source :P) because you can completely customize it... you can ban people who are bad, you can ignore people, you can change the background... you have full control. The only issue is it is a bit childish.
There are many more professional chat boxes... but many of them have a fee or do not have administrator controls (blocking people from chatting and stuff)
Where can I find a free chat html for my website?
you can meebo chat widget to your home page. Instructions on how to achieve this goes here:-
http://library.csun.edu/aklein/meebo.htm...
Reply:http://www.cbox.ws/
Reply:You can google "HTML Chat Boxes"... but there are some that I have used in the past that are acceptional.
I recommend using Xat (Link is in my source :P) because you can completely customize it... you can ban people who are bad, you can ignore people, you can change the background... you have full control. The only issue is it is a bit childish.
There are many more professional chat boxes... but many of them have a fee or do not have administrator controls (blocking people from chatting and stuff)
How do i get mozilla fire fox to stop showing web pages in the html version instead of the real version?
I downloaded an update, and now almost all the yahoo pages off of the homepage come up extremely basic, which never was the case before the download. I tried to reinstall it and that did not work.
How do i get mozilla fire fox to stop showing web pages in the html version instead of the real version?
Well that could be caused by many things. It could have been caused by something turning off support for Javascript. It actually is really popular to be on websites, so if that is disabled many websites won't work properly. Also, you might be missing the updated version of certain plugins, especially Java and Flash. Flash is commonly used, however Java is used even more often on Yahoo! webpages.
How do i get mozilla fire fox to stop showing web pages in the html version instead of the real version?
Well that could be caused by many things. It could have been caused by something turning off support for Javascript. It actually is really popular to be on websites, so if that is disabled many websites won't work properly. Also, you might be missing the updated version of certain plugins, especially Java and Flash. Flash is commonly used, however Java is used even more often on Yahoo! webpages.
I want to conduct a google search for something that can only be found inside html code. Is this possible?
Is there any search engine that will allow you to do a search specifically for something inside html? I need to limit my results to sites with only a specific "%26lt;li%26gt;" tag.
I want to conduct a google search for something that can only be found inside html code. Is this possible?
that would be a neat feature.. but apparently there isn't one. =/
Reply:search in the name of "html codes" or similar in that see for the code or some sites even have the codes search but idont know which one.
flower arranging
I want to conduct a google search for something that can only be found inside html code. Is this possible?
that would be a neat feature.. but apparently there isn't one. =/
Reply:search in the name of "html codes" or similar in that see for the code or some sites even have the codes search but idont know which one.
flower arranging
Subscribe to:
Posts (Atom)