Last active
December 15, 2015 20:29
-
-
Save leafbird/5319440 to your computer and use it in GitHub Desktop.
html 파일 만들 때 기본으로 타이핑하는 마크업들.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>Write Title Here.</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link class="include" rel="stylesheet" type="text/css" href="style.css" /> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.1/jquery.min.js" type="text/javascript"></script> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment