Hey. I was wondering if any one knew how to make a drop down list show up in the browser. And also have a picture show up in the background isntead of a solid color.
<html>
<body style="background-image:url(insert link);">
<form>
<select name="Queen Songs">
<option value="We Will Rock You">We Will Rock You</option>
<option value="Bohemian Rhapsody">Bohemian Rhapsody</option>
<option value="The Show Must Go On">The Show Must Go On</option>
<option value="We Are The Champions">We Are The Champions</option>
</select>
</form>
</body>
</html>
Yeah, some browsers look for it, or you'll end up with a single option that is equal to every piece of text since the first option tag until you close it or the HTML ends.
That's irrelevant. Artemio posted the wrong link(it's NOT http://w3schools.org). Go to http://w3schools.com. Also, for future reference, please be sure to reply to the post you're responding to, as opposed to randomly picking a post in the thread and hitting 'reply.'
<body style="background-image:url(insert link);">
<form>
<select name="Queen Songs">
<option value="We Will Rock You">We Will Rock You</option>
<option value="Bohemian Rhapsody">Bohemian Rhapsody</option>
<option value="The Show Must Go On">The Show Must Go On</option>
<option value="We Are The Champions">We Are The Champions</option>
</select>
</form>
</body>
</html>