When I click on my submit button, the form does not get submitted. even the links I created (to www.Google.com) does not work. How do I integrate my html pages to my website? I really want to see my pages work like real. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

When I click on my submit button, the form does not get submitted. even the links I created (to www.Google.com) does not work. How do I integrate my html pages to my website? I really want to see my pages work like real.

11th Jun 2016, 4:23 AM
Nwaburu Emeka Christian
Nwaburu Emeka Christian - avatar
2 Answers
+ 3
For integrating web pages into your site you will want to use href i.e <a href="http://www.google.com">Google Link</a> To integrate your personal .html files to link properly you will want to make sure you have the right directory of that particular file when you write it in your href otherwise it wont work however if you include that .html file in the same folder as your index.html you will do the same as a normal site i.e if your other page was second.html <a href="second.html">Second Page</a> otherwise if its not in the same folder you will have to direct it to that folder in the href link. Depending on what text editor you are using some will write the directory location for you with a pop up to select like Brackets. It makes it simpler when you have multipe files in different folders that you want to link together To submit the form you may want to look into using php
11th Jun 2016, 5:37 AM
Matt
0
was helpful
11th Jun 2016, 7:25 PM
Nwaburu Emeka Christian
Nwaburu Emeka Christian - avatar