Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

HTML Forum


You are currently viewing our HTML Forum as a guest. Please register to participate.
Login



Post a Project »

Find a Professional HTML Freelancer!

Find a Freelancer to help you with your HTML projects

FREE Outsourcing eBook!

Closed Thread
Old 10-12-2010, 04:05 AM html tags
Junior Talker

Posts: 1
Name: jeetendra
Trades: 0
Hey guys will u help me
How to made a drop down menu in html tags.

How to made a continous marquee in html tags.
jeetendra is offline
View Public Profile
 
 
Register now for full access!
Old 10-12-2010, 05:45 AM Re: html tags
Kelpie's Avatar
Skilled Talker

Posts: 82
Name: Andrew
Location: SW Scotland
Trades: 0
The menu can't be done in html alone, need to use css as well. Maybe try this drop down menu code.
Marquee isn't html standard, and support varies re:continuous looping, but there's this set of examples you can take a look at.
Kelpie is offline
View Public Profile
 
Old 10-12-2010, 06:25 AM Re: html tags
CSM
CSM's Avatar
Front-End Developer

Posts: 297
Name: Michael Pehl
Location: Palma de Mallorca
Trades: 0
Something like this?

http://labs.cookielessdomain.com/cssmenu/index.html

Hover over the "More" links
__________________
Chief Web Officer / Front-End Developer / System Engineer

Please login or register to view this content. Registration is FREE
-
Please login or register to view this content. Registration is FREE
CSM is offline
View Public Profile Visit CSM's homepage!
 
Old 10-13-2010, 12:43 PM Re: html tags
captkrackerjack's Avatar
Experienced Talker

Latest Blog Post:
Moved Blog to NGINX!
Posts: 31
Name: Greg
Location: California
Trades: 0
If you don't already know about JQuery give that a look. Here is a quick good article on using JQuery and CSS http://designreviver.com/tutorials/j...dropdown-menu/. I recommend it unless your requirements are only HTML and CSS which I will then point you to http://www.lwis.net/free-css-drop-down-menu/ which is a neat little framework to use but it does use a little javascript for IE6 and below but minimal.
__________________

Please login or register to view this content. Registration is FREE

Fav sites; last.fm, mashable.com, speckyboy.com
captkrackerjack is offline
View Public Profile Visit captkrackerjack's homepage!
 
Old 10-13-2010, 03:25 PM Re: html tags
Junior Talker

Posts: 4
Name: Ashley Stern
Trades: 0
You cannot create all that stuff simply using html, CSS is also required. There are many tutorials available. removed

Last edited by chrishirst; 10-14-2010 at 07:40 PM..
Ashley Stern is offline
View Public Profile
 
Old 10-18-2010, 06:05 AM Re: html tags
Banned

Posts: 34
Name: Alan Smith
Location: USA
Trades: 0
If you want to make a drop down menu using HTML, then you have to use select tag for that.
For an Example, if you want to create a drop down list for States of USA, then you can use following code:
<select>
<option value="USA">USA</option>
<option value="UK">UK</option>
<option value="Canada">Canada</option>
</select>

You can use marquee tag to make a continuous marquee.
alan123 is offline
View Public Profile Visit alan123's homepage!
 
Old 10-18-2010, 11:01 AM Re: html tags
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
That is not a drop-down MENU, it's just a select box.. not the same thing.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
View Public Profile
 
Old 10-19-2010, 02:45 AM Re: html tags
edgray's Avatar
Super Moderator

Latest Blog Post:
Frantic
Posts: 4,264
Name: Sugarcane Gray
Location: Hell, Southern Spain
Trades: 0
The Suckerfish Fish drop down menus are great:

http://htmldog.com/articles/suckerfish/dropdowns/
__________________

Please login or register to view this content. Registration is FREE
- a project in video and sound.

Please login or register to view this content. Registration is FREE
"Absolute Rubbish, an insult to the blues." - NME.

Please login or register to view this content. Registration is FREE
- Come use our agency :)
edgray is offline
View Public Profile Visit edgray's homepage!
 
Old 10-20-2010, 04:31 AM Re: html tags
Html Web Design's Avatar
Experienced Talker

Posts: 31
Name: WP Themes
Location: Nagpur
Trades: 0
Drop Down Menu :

HTML Code:
<html>
<head>
<title>My Page</title>
</head>
<body>
<form name="myform" action="http://www.mydomain.com/myformhandler.cgi" method="POST">
<div align="center">
<select name="mydropdown">
<option value="Milk">Fresh Milk</option>
<option value="Cheese">Old Cheese</option>
<option value="Bread">Hot Bread</option>
</select>
</div>
</form>
</body>
</html>



Marquee in HTML

HTML Code:
<marquee behavior="scroll" direction="left" scrollamount="1">Slow scroll speed</marquee>
<marquee behavior="scroll" direction="left" scrollamount="10">Medium scroll speed</marquee>
<marquee behavior="scroll" direction="left" scrollamount="20">Fast scroll speed</marquee>
__________________

Please login or register to view this content. Registration is FREE

Please login or register to view this content. Registration is FREE

Last edited by chrishirst; 10-20-2010 at 02:40 PM..
Html Web Design is offline
View Public Profile Visit Html Web Design's homepage!
 
Old 10-20-2010, 10:01 AM Re: html tags
LadynRed's Avatar
Defies a Status

Posts: 10,017
Location: Tennessee
Trades: 0
Quote:
<div align="center">
This is not the way to center something, this is what CSS is for!

Marquee is HORRIBLE, it's deprecated and should NOT be used. There are better ways to get your point across besides annoying your visitors with this horrid tag.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE

LadynRed is offline
View Public Profile
 
Old 10-21-2010, 02:29 PM Re: html tags
Skilled Talker

Posts: 52
Trades: 0
Quote:
Originally Posted by jeetendra View Post
Hey guys will u help me
How to made a drop down menu in html tags.

How to made a continous marquee in html tags.
Hi you can do a drop down menu in css and html here yu have the example:
sperling.com/examples/menuh/
webmastertalker is offline
View Public Profile
 
Old 10-28-2010, 04:06 AM Re: html tags
Skilled Talker

Posts: 60
Name: Dmitry
Trades: 0
For dropdown and other menus I'm using this examples
__________________
Sincerely, Dmitry

Please login or register to view this content. Registration is FREE
ElmanF is offline
View Public Profile Visit ElmanF's homepage!
 
Old 11-04-2010, 11:13 AM Re: html tags
Super Talker

Posts: 114
Trades: 0
For HTML Dropdown tags
<html>
<body>

<form action="">
<select Type="colors">
<option value="red">Red</option>
<option value="black">Black</option>
<option value="yellow">Yellow</option>
<option value="blue">Blue</option>
</select>
</form>

</body>
</html>
__________________

Please login or register to view this content. Registration is FREE


Please login or register to view this content. Registration is FREE
sholing is offline
View Public Profile Visit sholing's homepage!
 
Closed Thread     « Reply to html tags
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 2.81048 seconds with 12 queries