-
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
0 parents
commit eb43eae
Showing
4 changed files
with
83 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,25 @@ | ||
<!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 style="color: green;" 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://html.spec.whatwg.org/multipage/" target = "_blank" title = "html 5 specification ">Hypertext Markup Language (HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web applications. | ||
Web browsers receive HTML documents from a web server or from local storage and render them into multimedia web pages. | ||
HTML describes the structure of a web page semantically and originally included cues for the appearance of the document. | ||
<img src="https://s3-ap-northeast-2.amazonaws.com/opentutorials-user-file/module/3135/7648.png"> | ||
</p><p style="margin-top:45px;">HTML elements are the building blocks of HTML pages. | ||
With HTML constructs, images and other objects, such as interactive forms, may be embedded into the rendered page. | ||
It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. | ||
HTML elements are delineated by tags, written using angle brackets. </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,18 @@ | ||
<!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>CSS</h2> | ||
<p> CSS에 관한 내용입니다 ㅎㅎ</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,20 @@ | ||
<!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" target="_blank">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> |
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,20 @@ | ||
<!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>홈페이지 입니다 </h2> | ||
<p> | ||
hello world! | ||
</p> | ||
</body> | ||
</html> |