Posts

Showing posts with the label WebProgramming

Step to publish your static html web page to GitHub

  If you're looking to share your static website with the world, GitHub provides a simple and free solution through GitHub Pages. This guide will walk you through the process of deploying your static site on GitHub, making it accessible to anyone with an internet connection. GitHub Pages allows you to host static HTML, CSS, and JavaScript files directly from your GitHub repository. Whether you're showcasing a portfolio, documentation, or a personal project, GitHub Pages streamlines the deployment process. Follow the steps outlined in this guide to set up your GitHub repository, choose a publishing source, and configure your static site for seamless deployment. With just a few clicks, you'll have your static web page live and accessible on the web. click this link to download the guidelines Step to publish your static html web page to GitHub .pdf Link

Link Submission Lab Web 2023

Lab week 1 Lab week 2 Lab week  3  due date 7/11/2023  11.59 pm Lab week  4  due date 14/11/2023  11.59 pm Lab week 5  due date 27/11/2023  11.59 pm Lab week 6  due date 5/12/2023  11.59 pm Lab week 7  due date 12/12/2023  11.59 pm Lab week 8  due date 27/12/2023  11.59 pm

JSTL Get Value From Form

 http://www.java2s.com/Tutorial/Java/0380__JSTL/GetvaluefromFormTextFieldAndOutputthevaluebyusingJSTL.htm Form <html> <head><title>Create Person</title></head> <body> <h1>Enter your details</h1> <form action= "listPageParameters.jsp" method= "post" > <table> <tr><td>First name:</td> <td><input type= "text" name= "firstName" /></td> </tr> <tr><td>Last name:</td> <td><input type= "text" name= "lastName" /></td> </tr> <tr><td>Age:</td> <td><input type= "text" name= "age" /></td> </tr> </table> <input type= "submit" value= "Submit details" /> </form> </body> ...

Basic Web Page 1

Image