-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
72 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>WEB1 - HTML</title> | ||
<meta charset="utf-8"> | ||
</head> | ||
<body> | ||
<h1><a href="index.html">WEB</a></h1> | ||
<ol> | ||
<li><a href="1.html">HTML</a></li> | ||
<li><a href="2.html">CSS</a></li> | ||
<li><a href="3.html">JavaScript</a></li> | ||
</ol> | ||
<h2>HTML이란 무엇인가?</h2> | ||
<p><a href="https://www.w3.org/TR/html52/" target="_blank" title="html5 specification">HTML</a> 60주년 특집호 만드느라 바쁘시겠지만, <strong><u>건강</u> 조심하세요</strong></p> | ||
<img src="coding.jpg" width="100%"> | ||
<p style="margin-top:100px;">싱클레어는 부모의 따뜻한 보살핌과 기독교 신앙의 가르침 안에서 자라는 평범한 소년이었다.</p> | ||
</body> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>WEB1 - CSS</title> | ||
<meta charset="utf-8"> | ||
</head> | ||
<body> | ||
<h1><a href="index.html">WEB</a></h1> | ||
<ol> | ||
<li><a href="1.html">HTML</a></li> | ||
<li><a href="2.html">CSS</a></li> | ||
<li><a href="3.html">JavaScript</a></li> | ||
</ol> | ||
<h2>CSS</h2> | ||
<p>CSS의 C가 Cascading의 약자인데, | ||
이는 상위 요소의 스타일 속성을 자손 요소들에게 상속시켜주는 모습이 DOM 트리구조에서 | ||
마치 폭포수처럼 내려가는 모습을 닮았기 때문이다.</p> | ||
</body> | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>WEB1 - JavaScript</title> | ||
<meta charset="utf-8"> | ||
</head> | ||
<body> | ||
<h1><a href="index.html">WEB</a></h1> | ||
<ol> | ||
<li><a href="1.html">HTML</a></li> | ||
<li><a href="2.html">CSS</a></li> | ||
<li><a href="3.html">JavaScript</a></li> | ||
</ol> | ||
<h2>JavaScript</h2> | ||
<p>프로토타입기반의 객체지향 프로그래밍 언어로, 스크립트 언어에 해당된다.</p> | ||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
<!doctype html> | ||
<html> | ||
<head> | ||
<title>WEB1 - Welcome</title> | ||
<meta charset="utf-8"> | ||
</head> | ||
<body> | ||
<h1><a href="index.html">WEB</a></h1> | ||
<ol> | ||
<li><a href="1.html">HTML</a></li> | ||
<li><a href="2.html">CSS</a></li> | ||
<li><a href="3.html">JavaScript</a></li> | ||
</ol> | ||
<h2>WEB</h2> | ||
<p>웹(web)은 기본적으로 거미줄을 뜻한다.</p> | ||
</body> | ||
</html> |