Skip to content

Commit

Permalink
웹사이트 완성
Browse files Browse the repository at this point in the history
  • Loading branch information
0301sdh authored Mar 26, 2024
0 parents commit eb43eae
Show file tree
Hide file tree
Showing 4 changed files with 83 additions and 0 deletions.
25 changes: 25 additions & 0 deletions 1.html
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>
18 changes: 18 additions & 0 deletions 2.html
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>
20 changes: 20 additions & 0 deletions 3.html
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>
20 changes: 20 additions & 0 deletions index.html
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>

0 comments on commit eb43eae

Please sign in to comment.