Java 2 old Papers Solution 2018 || BIM STUDY NOTES
year 2018 Create a HTML document that contains header information of a page and include this HTML as a header file in header.html
1 2 3 4 5 6 7 8 9 10 11 12 13 |
<!DOCTYPE html> <html> <head> <meta charset="ISO-8859-1"> <title>Insert title here</title> </head> <body> <center> <h1>Orchid International College</h1> <h3>Gaushala, Kathmandu</h3> </center> </body> </html> |
include.jsp <html> <body> <%@include file = “header.html” %> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p></body> </html> 3. Create […]
Continue Reading