ylee 0 Posted November 5, 2005 Report Share Posted November 5, 2005 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 Quote Link to post Share on other sites
Jonas 151 Posted November 5, 2005 Report Share Posted November 5, 2005 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... Quote Link to post Share on other sites
F-Man 0 Posted November 5, 2005 Report Share Posted November 5, 2005 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...<{POST_SNAPBACK}> 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. Quote Link to post Share on other sites
Skemcin 13 Posted November 5, 2005 Report Share Posted November 5, 2005 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. Quote Link to post Share on other sites
ylee 0 Posted November 6, 2005 Author Report Share Posted November 6, 2005 how do i publish a web Quote Link to post Share on other sites
Html 7 Posted November 10, 2005 Report Share Posted November 10, 2005 Use either the following free services, freeservers.com or http://www.geocities.com Quote Link to post Share on other sites
Paim 0 Posted November 10, 2005 Report Share Posted November 10, 2005 http://www.freewebs.comhttp://www.atspace.comGeocities is baaaaaaaaaaaaaaaaad Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.