Skip to content

Commit e6facbc

Browse files
authored
기본 웹페이지 업로드
1 parent 0279ebf commit e6facbc

File tree

5 files changed

+107
-0
lines changed

5 files changed

+107
-0
lines changed

1.html

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>WEB1 - HTML </title>
5+
<meta charset="utf-8">
6+
</head>
7+
<body>
8+
<h1><a href="index.html">WEB</a></h1>
9+
<ol>
10+
<li><a href="1.html">HTML</a></li>
11+
<li><a href="2.html">CSS</a></li>
12+
<li><a href="3.html">JavaScript</a></li>
13+
</ol>
14+
<h2>HTML이란 무엇인가?</h2>
15+
<p><a href="https://www.w3.org/TR/2011/WD-html5-20110405/" title="HTML5 specification">Hypertext Markup
16+
Language(HTML)</a> is the standard markup language for <strong>creating <u>web</u> pages</strong> and web
17+
applications.
18+
Web browsers receive HTML documents from a web server or from local storage and render the documents into
19+
multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the
20+
appearance of the document.</p>
21+
<img src="coding.jpg" width="100%">
22+
<p style="margin-top: 40px;">
23+
HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as
24+
interactive forms may be embedded into the rendered page. HTML provides a means to create structured documents by
25+
denoting structural semantics for text such as headings, paragraphs, lists, links, quotes and other items. HTML elements are
26+
delineated by tags, written using angle brackets.
27+
</p>
28+
</body>
29+
</html>

2.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>WEB1 - CSS </title>
5+
<meta charset="utf-8">
6+
</head>
7+
<body>
8+
<h1><a href="index.html">WEB</a></h1>
9+
<ol>
10+
<li><a href="1.html">HTML</a></li>
11+
<li><a href="2.html">CSS</a></li>
12+
<li><a href="3.html">JavaScript</a></li>
13+
</ol>
14+
<h2>CSS란 무엇인가?</h2>
15+
<p style="margin-top: 40px;">
16+
Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation
17+
of a document written in a markup language such as HTML.[1] CSS is a cornerstone technology
18+
of the World Wide Web, alongside HTML and JavaScript.[2]
19+
CSS is designed to enable the separation of presentation and content, including layout,
20+
colors, and fonts.[3] This separation can improve content accessibility; provide more flexibility
21+
and control in the specification of presentation characteristics; enable multiple web pages to
22+
share formatting by specifying the relevant CSS in a separate .css file, which reduces complexity
23+
and repetition in the structural content
24+
</p>
25+
</body>
26+
</html>

3.html

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>WEB1 - JavaScript </title>
5+
<meta charset="utf-8">
6+
</head>
7+
<body>
8+
<h1><a href="index.html">WEB</a></h1>
9+
<ol>
10+
<li><a href="1.html">HTML</a></li>
11+
<li><a href="2.html">CSS</a></li>
12+
<li><a href="3.html">JavaScript</a></li>
13+
</ol>
14+
<h2>JavaScript 무엇인가?</h2>
15+
<p style="margin-top: 40px;">
16+
JavaScript (/ˈdʒɑːvəskrɪpt/),[10] often abbreviated JS, is a programming language that is one of
17+
the core technologies of the World Wide Web, alongside HTML and CSS.[11] Over 97% of websites
18+
use JavaScript on the client side for web page behavior,[12] often incorporating third-party
19+
libraries.[13] All major web browsers have a dedicated JavaScript engine to execute
20+
</p>
21+
</body>
22+
</html>

coding.jpg

6.96 KB
Loading

index.html

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>WEB1 - HTML </title>
5+
<meta charset="utf-8">
6+
</head>
7+
<body>
8+
<h1><a href="index.html">WEB</a></h1>
9+
<ol>
10+
<li><a href="1.html">HTML</a></li>
11+
<li><a href="2.html">CSS</a></li>
12+
<li><a href="3.html">JavaScript</a></li>
13+
</ol>
14+
<h2>HTML이란 무엇인가?</h2>
15+
<p><a href="https://www.w3.org/TR/2011/WD-html5-20110405/" title="HTML5
16+
specification">Hypertext Markup Language(HTML)</a> is the standard markup language for
17+
<strong>creating <u>web</u> pages</strong> and web applications.
18+
Web browsers receive HTML documents from a web server or from local storage and render the
19+
documents into multimedia web pages. HTML describes the structure of a web page semantically
20+
and originally included cues for the appearance of the document.</p>
21+
<img src="coding.jpg" width="100%">
22+
<p style="margin-top: 40px;">
23+
HTML elements are the building blocks of HTML pages. With HTML constructs, images and other
24+
objects such as interactive forms may be embedded into the rendered page. HTML provides a means
25+
to create structured documents by denoting structural semantics for text such as headings,
26+
paragraphs, lists, links, quotes and other items. HTML elements are delineated by tags, written using
27+
angle brackets.
28+
</p>
29+
</body>
30+
</html>

0 commit comments

Comments
 (0)