-
Notifications
You must be signed in to change notification settings - Fork 1
/
SubjectSearch.jsp
30 lines (28 loc) · 999 Bytes
/
SubjectSearch.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%@ page language="java" import="java.text.*, java.sql.*" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<link href="style.css" rel="stylesheet" type="text/css">
<title>Insert title here</title>
</head>
<body style="width:100%; height: 100%;">
<!-- Á¦¸ñ div -->
<div style="font-size:30px;text-align: center;">
<h1 >Input title to Search!</h1>
</div>
<div style="text-align:center; margin-left:250px;margin-right:250px;margin-bottom: 50px">
<form action = "Search_titleResult.jsp" method = "POST">
<div style="text-align:center; margin-bottom:30px;">
<input type="text" style=" width:700px; height:30px;"name="title">
</div>
<!-- Á¶È¸ ¹öÆ° -->
<div style="text-align:center;">
<input style="width: 110px; height: 35px; font-size: 15px; text-align:center;" type="submit" value="search" />
</div>
</form>
</div>
</body>
</html>