How I can create an index.html file that causes the browser to render an index page?
-
1. That page should contain a link to a "primary" application page. 2. The primary page should contain a form. The form should allow the user to specify a Stream and Course Code. The form also should contain a button that the user can click to submit the form. Aslo the primary page should display the results of the query that is triggered by submission of the form. Specifically, the primary page should display the Course Code, Course Title, Stream, and Course Profile that matches the specified criteria. The displayed result lines should be well formatted. 3. The primary page should allow the user to click on the profile for any of the courses that it displays, thereby allowing the user to learn more about that course. When the user clicks on the profile for a particular course, the application should display a "secondary" page containing the profile details. The data should be well formatted. 4. The secondary page should contain a link (or button, if you prefer) back to the primary page, thus allowing the user easily to perform another class search.
-
Answer:
Sorry, I haven't got about three hours to spare - especially for free.
Gianna Larson at Yahoo! Answers Visit the source
Other answers
I agree with the above posted. Try video tutorials. It sounds like you don't really know HTML or CSS or Javascript either...
Alex
You should go to w3c.com it has very good tutorial for what you are looking for I would suggest first learn HTML then CSS then Javascript. Knock one item down at a time this will make your goal easy. Index.html is the home page of the site. You can add some html and for designing CSS then add a link to a differen page. I believe you are trying to develope an application and I highly doubt that anyone is going to do that for you for free but we can guide you. Creating your home page which is usually already there if you are have a hosting company. You would need to open notepad or any plain text eiditor type the following: <doctype!> <html> <head> <title> You webstie name </title> <body> Enter the below code here. </body> </html> then save as index.html then open your browser and find where you saved index.html file and open it. NEXT... add this line in to the body of the code that I provided you above. <a href="Formpage.html"> Page Name </a> now to open the index.html file to edit is a little tricky not really.... You should right click on the file index.html the highlight Open with then select Notepad or whichever editor you used. create a new file in the editor name it Formpage.html On Formpage.html you would paste the same code I provide you above except the hyperlink code you would replace it with: <a href="index.html"> Page Name </a> be very careful with the UPPER and lower case it make a big impact. In that page you would also add a form code search Google.com for a website subition form generator and place it under the hyperlink code. you can make your site more dynamic but you have to know programming language. I just gave you some basic to get you started Good Luck! ADVISE: You should def. hire a professional developer for your work because learning all this could take you months or longer. Make sure you always save your work when done editing VERY IMPORTANT. Alway rereread your codes becaue a simple bracket can fial your whole application.
Uzair
Related Q & A:
- How I can validate input on form before upload file?Best solution by stackoverflow.com
- How I can create timer in classic asp?Best solution by stackoverflow.com
- Can you share some tips on how I can preserve my collection of paintings?Best solution by Yahoo! Answers
- How I can open UIF File?Best solution by Yahoo! Answers
- How I can change Yahoo page language?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.