1.基础文件头
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
设置head内容(可以不加)
<head>
<title> title </title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
2.head标签内引入jquery
<script src="https://cdn.staticfile.org/jquery/3.5.1/jquery.js"></script>
3.boostrap标签样式
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.css">
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.js"></script>
4.在head中引入jstl标签,可以实现遍历
<%@ taglib prefix = "c" uri = "http://java.sun.com/jsp/jstl/core" %>