InterviewSolution
Saved Bookmarks
| 1. |
What are views? |
|
Answer» Views contain the HTML provided by our application and separate our controller or application logic from our presentation logic. These are STORED in the resources/views directory. Example <html> <BODY> <h1>Best Interview Question<h1> </body> </html> |
|