Ask your own question, for FREE!
Computer Science 13 Online
OpenStudy (ajprincess):

Pls help:)

OpenStudy (ajprincess):

Determine what custom information you'd like in your story, and build a page, begin.html with a form that allows the user to enter that information.  Make sure to name your fields.  Include method="get" and action="story.html" in your <form> tag.  Include a submit button.  Don't spend too much time makng it look nice; you can come back and clean it up later.

OpenStudy (ajprincess):

@KingGeorge

OpenStudy (ajprincess):

@annas @ganeshie8

OpenStudy (anonymous):

Do you have to build an html form?

OpenStudy (anonymous):

This is basic right off the top of my head...but you can add CSS and other elements you need to it later. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" " http://www.w3.org/TR/html4/strict.dtd "> <!--You can change the doctype to whatever you need to use--> <html> <head> <title>This is title of document that appears in status bar</title> </head> <style> use this area to use CSS for styling of the page or you can use inline style using span tags </style> <body> <h1>This is a heading for the page</h1> <p>This is a paragraph for the page</p> <form name="input" action="story.html" method="get"> Username: <input type="text" name="user"> <!--This is a textbox field for user input--> <input type="submit" value="Submit"> <!--This is your submit button--> </form> </body> </html>

OpenStudy (ajprincess):

Thnx a lot:)

OpenStudy (anonymous):

No Problem, feel free to message me if you need help with CSS or other things with HTML

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!