개발로그필름

[쉽게 배우는 JSP 웹 프로그래밍] 2장 웹 쇼핑몰 예제 코드 본문

IT/쉽게 배우는 JSP 웹 프로그래밍

[쉽게 배우는 JSP 웹 프로그래밍] 2장 웹 쇼핑몰 예제 코드

yuullog 2022. 11. 22. 16:44
728x90
반응형
SMALL

 

반응형

 

WebMarket/WebContent/welcome.jsp

<html>
<head>
<link rel = "stylesheet"
	href = "https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<title>Welcome</title>
</head>
<body>
	
	<nav class = "navbar navbar-expand navbar-dark bg-dark">
        <div class = "container">
            <div class = "navbar-header">
                <a class = "navbar-brand" href="./welcome.jsp">Home</a>
            </div>
        </div>
	</nav>	
	
	<%! String greeting = "Welcome to Web Shoppint Mall";
	String tagline = "Welcome to Web Market!"; %>
	
	<div class = "jumbotron">
		<div class = "container">
			<h1 class = "display-3">
				<%= greeting %>
			</h1>
		</div>
	</div>
	
	<div class = "container">
		<div class = "text-center">
			<h3>
				<%= tagline %>
			</h3>
			
		</div>
		<hr>
	</div>
	
	<footer class = "container">
		<p>&copy; WebMarket</p>
	</footer>
</body>
</html>

 

 

SMALL

 

반응형
LIST
Comments