Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CSS-HTML-Connection-Problem #5

Open
bshclosegrip opened this issue Apr 12, 2021 · 0 comments
Open

CSS-HTML-Connection-Problem #5

bshclosegrip opened this issue Apr 12, 2021 · 0 comments

Comments

@bshclosegrip
Copy link
Owner

#Capital Letter Unmatched

<link rel = 'stylesheet' href = './CSS/Index.css'>

에서 CSS와 Index의 대소문자가 달라서 연결이 안되었슴 => 맞춘 후 연결 됨.

<%@ page language="java" contentType="text/html; charset=EUC-KR"
    pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name = 'viewport' content = 'width = device-width, initail-scale = 1.0'>
<title>index</title>
<link rel = 'stylesheet' href = './CSS/Index.css'>
</head>
<body>
	<div id = 'index'>
		<div id = 'Login'>로그인/로그아웃</div>
		<header id = 'header'>
			<nav id = 'main_menu'>메뉴</nav>
		</header>
		<div id = 'center'>
			<div id = 'sub_menu'>서브메뉴</div>
			<div id = 'middle'>
				<div id = 'border'>
					<h3>공지사항</h3>
				</div>
				<div id = 'stock'>
					<h3>재고형황</h3>
				</div>
			</div>
			<div id = 'guestbook'>
				방명록
			</div>
		</div>
		<footer id = 'footer'>꼬릿말</footer>
	</div>
</body>
</html>
@charset "UTF-8";

#index{
	margin:10px auto;
	border:1px solid #dddddd;
	width:1200px;
}

#index div{
	border : 1px solid #ccccff;
	padding : 20px;
}

#index #footer {
	font-size : 3em;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant