Created
March 31, 2017 17:40
-
-
Save JuniorMSG/fbb1b9ac00769fc53c7dc801487b0b7f to your computer and use it in GitHub Desktop.
Test
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></title> | |
<link rel="stylesheet" type="text/css" href="http://localhost/style.css"> | |
</head> | |
<body> | |
<header> | |
<!-- 해더를 나타내는 태그 = 의미론적인 웹--> | |
<h1><a href="http://localhost/page_html.html">JavaScript</a></h1> | |
</header> | |
<nav> | |
<ol> | |
<li><a href="http://localhost/page_html.html"> JavaScript란?</a></li> | |
<li><a href="http://localhost/page_vc.html">변수와 상수</a></li> | |
<li><a href="http://localhost/page_op.html">연산자</a></li> | |
</ol> | |
<!-- 문서를 탐색하도록 만든 태그 - 네비게이션 = 의미론적인 웹 --> | |
</nav> | |
<article> | |
<!-- 본문을 나타네는 태그 = 의미론적인 웹 --> | |
<h2>연산자</h2> 계산을 할 때 사용되는 것입니다. | |
<ul> | |
<li>정해진값 </li> | |
<li>x=10일때 왼쪽항</li> | |
</ul> | |
<!-- 콘텐츠를 나타냄.. --> | |
</article> | |
<!-- Semantic Web 의미가 잘 드러나는 웹 --> | |
<!-- XHTML 을 지양점을 계승해서 HTML5가 되었다. --> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment