你好我想在我的jsp中添加一个backround。如何在链接到我的jsp上做一个图像。而且我想在左侧打印出音乐,体育等类别。怎么办呢?
enter code here
<%--
Document : success
Created on : 19.Ara.2016, 12:41:49
Author : BURAK NURÇİÇEK
--%>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>JSP Page</title>
</head>
<body>
<% out.println("welcome");
out.println("<a href='logout.jsp'>Log out</a>");
%>
<%
out.println("<a href='Music.jsp'>Sport</a>");
%>
<%
out.println("<a href='Music.jsp'>Stage</a>");
%>
<%
out.println("<a href='Music.jsp'>Education</a>");
%>
<%
out.println("<a href='Music.jsp'>Family</a>");
%>
</body>
</html>