JSP-Servlets
OJT : Technologies used : 1) front-end : html, css, js, bootstrap,jsp 2) back-end : java, servlet 3) Database : mysql. software Used : 1. Eclipse 2. Xampp html simple tag : Document Structure Tags <!DOCTYPE html> : Declares the document type and version of HTML (HTML5 in this case). <html> : The root element of an HTML document. <head> : Contains meta-information about the document (such as its title, character set, styles, scripts, etc.). <body> : Contains the content of the HTML document, visible to users. Simple jsp program : <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> <!DOCTYPE html> <html> <head> <title>JSP Example</title> </head> <body> <h1>Welcome to JSP</h1> <%-- Scriptlet --%> <% ...