Thursday, January 28th, 2010
I’m pretty sure the html needs to go in "Custom CSS" but I cannot remember at all how to generate a code for one of my own pictures. I want to use one as a layout on Multiply or ask someone else if I can use theirs.
Thanks for the help in advance!
<img src="picturename.filetype">
Technorati Tags: Custom Css, Filetype, Flickr, html code, Img Src, Lt
Posted in html code | 1 Comment »
Wednesday, January 27th, 2010
How do you make an html code to e-mail sob0dy via hotmail and you type what you want it to say and it is capable of multiple e-mails to the same person at once?
You can’t do it with HTML alone because it is a client side scripting language, you’ll need to do it with PHP, which is a server side scripting language. Try this link to learn how: http://www.w3schools.com/PHP/php_mail.asp
Good luck!
By the way, it’s somebody not, sob0dy.
Technorati Tags: Client Side Scripting, Client Side Scripting Language, E Mail, Good Luck, Hotmail, html code, Html Mail, Mail Asp, Php Asp, Php Mail, Server Side Scripting Language, W3schools
Posted in html code | 2 Comments »
Wednesday, January 27th, 2010
I look pictures up on the net, but can’t get them to become my background on my myspace. A girl helped walk me through it but nothing seems to work. What is the html code, where is it and how do I get it in order to copy and paste it to work. Please help me!
I’ve already tried that and it doesn’t work.
just look for layout ,but if you want to make your own there are some websites that have free code generators you could easly make them yourself
…..oh yea you put the code in "about me" wen you are editing your profile
p.s myspace su*ks
Technorati Tags: Background, Code Generators, Copy And Paste, Copy Paste, html code, Html Post, myspace, Profile, Quot
Posted in html code | 2 Comments »
Wednesday, January 27th, 2010
Whenever I insert an image in my html code, it appears to be tiled. How do I untile it?
You’re using the CSS background property and without the full code for it, a browser’s default action is to tile it.
background: url(path to image) no-repeat center scroll;
There are other options to position or fix the image.
Ron
Technorati Tags: Background Property, Background Url, Browser, html code, Image, Tile
Posted in html code | 1 Comment »
Wednesday, January 27th, 2010
I am beating my head against a wall to try and figure this out and I’m probably completely overlooking it! I want to find an HTML scroll box that I can paste an HTML code in so users may copy it. When I input certain scroll box codes, the html code disappears or does some funky things to my site. Can someone help me?
You just need to put yout HTML code inside a textarea like this:
<textarea name="html_code" cols=40 rows=6>
Your html code here
</textarea>
Technorati Tags: Beating My Head, Codes Html, Cols, Funky Things, html code, Html Scroll Box, Html Textarea, Lt, Textarea Name
Posted in html code | 3 Comments »
Wednesday, January 27th, 2010
For this html code I need a code that allows me to search through many different pages of items that I have, not just one page. I really want the code to be simple!!! Also this needs to be searching within my page
can’t be done with html.
Technorati Tags: html code, Search Box, Search Pages
Posted in html code | 2 Comments »
Monday, January 25th, 2010
I want to create a A-Z Glossary for my one of my webpages and I don’t have any background of html, Please help. Thanks a ton.
In that page, there would be a one line A-Z alphabet list on top with individual links under each letter.
When you click on individual Letter, ‘C’ for example, it will automatically jump to the right section of index begins with that letter, ie, ‘C’.
That’s a lot of work to do by hand (maintaining the glossary, that is). Setting it up is fairly easy:
<ul>
<li> < a href="#go_a">A</a> </li>
<li> < a href="#go_b">B</a> </li>
<li> < a href="#go_c">B</a> </li>
… etc.
</ul>
<dl>
<dt> <a name="go_a"> A </a> </dt>
<dd>
CONTENTS of A
</dd>
<dt> <a name="go_b"> B </a> </dt>
<dd>
CONTENTS of B
</dd>
<dt> <a name="go_c"> C </a> </dt>
<dd>
CONTENTS of C
</dd>
… etc.
</dl>
Use a list (UL) to create the index; that’s the correct way to make a menu. Then use CSS to style the list so that all letters line up horizontally instead of vertically.
The Definition List (DL) is especially fit for lists like glossaries.
EDIT:
The anchor tag can be EITHER "name" or "href", never both at the same time.
So never put a href inside a a name tag.
Technorati Tags: Alphabet, Anchor Tag, Background Html, Css Style, Dd, Dl, Dt, Fit, Glossary, Gt C, html code, Letter C, Lot, Lt, Name Tag, Ul
Posted in html index | 3 Comments »
Monday, January 25th, 2010
It’s silly…I am posting some very artsy pictures of a friend and I can’t because photobucket doesn’t allow it. What server will let me or how do I post a picture on my own using html code?
PixCastle will allow your "artsy" pictures
http://pixcastle.com/
The htmlfor posting an image is simple
<img src="IMAGE ADDRESS HERE" />
You can get the image address of any image by right clicking it and depending on the browser, viewing the properties or simply choosing to copy the image URL (another term for address). That is, if PixCastle doesn’t provide all this for you (I’m not sure if it does).
Technorati Tags: Artsy Pictures, html code, Image Address, Img Src, Lt, Photobucket, Pixcastle
Posted in html code | 2 Comments »
Monday, January 25th, 2010
I know that asp is response.write but what is simple html code to insert the default date, say into a text field on a form?
HTML is static. You cannot have it insert dynamic content (ie: the current date). You’d need to use a server-side language like ASP or PHP or something on the client-side like JavaScript.
Technorati Tags: asp, Current Date, Dynamic Content, html code, Html Date, Response Write, Server Side Language, Text Html
Posted in html code | 2 Comments »
Monday, January 25th, 2010
I know people have done it. I want to know how to make it so that if i want to change a picture to update itself when i have a newer pic people who have it linked don’t have to change the html code. Like a club penguin tracker!
but what file host does I use?
Just make sure the new one has the same name (like Image.jpg) and upload it to the same folder. You’ll over write the old one, or you can change it’s name first.
Technorati Tags: Club Penguin, html code, Image Jpg, Image Upload, Penguin
Posted in html code | 5 Comments »