Pls help:)
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.
@KingGeorge
@annas @ganeshie8
Do you have to build an html form?
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>
Thnx a lot:)
No Problem, feel free to message me if you need help with CSS or other things with HTML
Join our real-time social learning platform and learn together with your friends!