Jump to content

Help


ylee

Recommended Posts

i just started with learning HTML in school and we learned the basic tags and now the professor said that we should create a website that must contain only HTML tags. no scripting, flash or CGI should be used. NO software should be used to design this website. no Frontpage, dream Weaver etc.i have a lot of questions: but i want to know this one firsthow can i do buttons in this web site. how can i put them thanxcontact me at : ylee.yuri@gmail.com

Link to comment
Share on other sites

No, no. We don't email you. The point of a forum is that when one person asks a question, everybody can learn from the answer. That way, someone may ask a question no-one's even thought about before, and get their answer here too...Anyway, you can make buttons in more than one way:<input type="submit" value="Text on button" action="file to submit info to" /><input type="button" value="Text on button" onclick="script to be executed" />That last one typically needs a script or HTML DOM...

Link to comment
Share on other sites

No, no. We don't email you. The point of a forum is that when one person asks a question, everybody can learn from the answer. That way, someone may ask a question no-one's even thought about before, and get their answer here too...Anyway, you can make buttons in more than one way:<input type="submit" value="Text on button" action="file to submit info to" /><input type="button" value="Text on button" onclick="script to be executed" />That last one typically needs a script or HTML DOM...

That first one is wrong, the action attribute belongs to the form element.Another way to do a button is this: <button>Text</button> Where Text can have differnet markup (like <strong /> etc). Considering all these elements should be in a form, the best to use would be the type="submit" one. Just read about forms here on this site. :)
Link to comment
Share on other sites

unless you are paraphrasing the requirements, there is no reason why you couldn't goto http://images.google.com and seacrh for images/buttons to use on the site. If he said "create" then you can do this. If he said "use" then you're on your own - html and css only.For that matter, you could even download a free template and use that - as long as you add enough of your own code to enhance it.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...