-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlanguage.html
More file actions
213 lines (186 loc) · 8.9 KB
/
language.html
File metadata and controls
213 lines (186 loc) · 8.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE HTML>
<!--
Strongly Typed by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<title>Y-07</title>
<link rel="shortcut icon" href="images/favicon.ico" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />
<link rel="stylesheet" href="assets/css/main.css" />
<link rel="stylesheet" href="assets/css/language.css" />
</head>
<body class="left-sidebar is-preload">
<div id="page-wrapper">
<!-- Header -->
<section id="header">
<div class="container">
<!-- Logo -->
<h1 id="logo"><a href="language.html">Programming Language</a></h1>
<p>A formal language, which comprises a set of instructions used to produce various kinds of output</p>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a class="icon fa-home" href="index.html"><span>Home</span></a></li>
<li><a class="icon fa-cog" href="language.html"><span>Programming Language</span></a></li>
<li><a class="icon fa-retweet" href="opensource.html"><span>Open Source</span></a></li>
<li><a class="icon fa-sitemap" href="industry4.html"><span>Industry 4.0</span></a></li>
<li><a class="icon fa-cog" href="assets/license_guarantee.pdf"><span>License</span></a></li>
</ul>
</nav>
</div>
</section>
<!-- Main -->
<section id="main">
<div class="container">
<div id="content">
<!-- Post -->
<article class="box post">
<header>
<h2><strong>프로그래밍 언어</strong> 동영상 입니다!<br />
공부 좀 하세요!</h2>
</header>
<!-- Features -->
<div class="container">
<div class="row aln-center">
<div class="col-4 col-6-medium col-12-small">
<!-- Feature -->
<section>
<a href="contentpages/contentpage3-1.html" class="image featured"><img src="images/language01.png" alt="" /></a>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<!-- Feature -->
<section>
<a href="contentpages/contentpage3-2.html" class="image featured"><img src="http://img.youtube.com/vi/wfbWxtHHrgM/0.jpg" alt="" /></a>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<!-- Feature -->
<section>
<a href="contentpages/contentpage3-3.html" class="image featured"><img src="http://img.youtube.com/vi/c2mpe9Xcp0I/0.jpg" alt="" /></a>
</section>
</div>
<div class="col-12">
</div>
</div>
</div>
<div class="container">
<div class="row aln-center">
<div class="col-4 col-6-medium col-12-small">
<!-- Feature -->
<section>
<a href="contentpages/contentpage3-4.html" class="image featured"><img src="http://img.youtube.com/vi/fT9iFFAt60E/0.jpg" alt="" /></a>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<!-- Feature -->
<section>
<a href="contentpages/contentpage3-5.html" class="image featured"><img src="http://img.youtube.com/vi/PZIPsKgWJiw/0.jpg" alt="" /></a>
</section>
</div>
<div class="col-4 col-6-medium col-12-small">
<!-- Feature -->
<section>
<a href="contentpages/contentpage3-6.html" class="image featured"><img src="http://img.youtube.com/vi/ahCwqrYpIuM/0.jpg" alt="" /></a>
</section>
</div>
<div class="col-12">
</div>
</div>
</div>
<h3>Programming Language</h3>
<p>A programming language is a formal language, which comprises a set of instructions used to produce various kinds of output. Programming languages are used in computer programming to create programs that implement specific algorithms.</p>
<p>Most programming languages consist of instructions for computers, although there are programmable machines that use a limited set of specific instructions, rather than the general programming languages of modern computers. Early ones preceded the invention of the digital computer, the first probably being the automatic flute player described in the 9th century by the brothers Musa in Baghdad, during the Islamic Golden Age. From the early 1800s, programs were used to direct the behavior of machines such as Jacquard looms, music boxes and player pianos. However, their programs (such as a player piano's scrolls) could not produce different behavior in response to some input or condition.</p>
<p>Thousands of different programming languages have been created, mainly in the computer field, and many more still are being created every year. Many programming languages require computation to be specified in an imperative form (i.e., as a sequence of operations to perform) while other languages use other forms of program specification such as the declarative form (i.e. the desired result is specified, not how to achieve it).</p>
<p>The description of a programming language is usually split into the two components of syntax (form) and semantics (meaning). Some languages are defined by a specification document (for example, the C programming language is specified by an ISO Standard) while other languages (such as Perl) have a dominant implementation that is treated as a reference. Some languages have both, with the basic language defined by a standard and extensions taken from the dominant implementation being common.</p>
</article>
</div>
</div>
</section>
<!-- Footer -->
<section id="footer">
<div class="container">
<header>
<h2>Questions or comments? <strong>Get in touch:</strong></h2>
</header>
<div class="row">
<div class="col-6 col-12-medium">
<section>
<form method="post" action="#">
<div class="row gtr-50">
<div class="col-6 col-12-small">
<input name="name" placeholder="Name" type="text" />
</div>
<div class="col-6 col-12-small">
<input name="email" placeholder="Email" type="text" />
</div>
<div class="col-12">
<textarea name="message" placeholder="Message"></textarea>
</div>
<div class="col-12">
<a href="#" class="form-button-submit button icon fa-envelope">Send Message</a>
</div>
</div>
</form>
</section>
</div>
<div class="col-6 col-12-medium">
<section>
<p>한양대학교 ERICA캠퍼스 소프트웨어융합대학 소프트웨어학부 18학번 김승호</p>
<div class="row">
<div class="col-6 col-12-small">
<ul class="icons">
<li class="icon fa-home">
경기도 안산시 상록구<br />
학사 6길, 5<br />
에리카빌 405호
</li>
<li class="icon fa-phone">
010-8670-5766
</li>
<li class="icon fa-envelope">
<a href="#">rhanfwlq980@naver.com</a>
</li>
</ul>
</div>
<div class="col-6 col-12-small">
<ul class="icons">
<li class="icon fa-github">
<a href="https://github.com/cgm-seungho">@cgm-seungho</a>
</li>
<li class="icon fa-instagram">
<a href="https://www.instagram.com/k.seung__ho/">@k.seung__ho</a>
</li>
<li class="icon fa-link">
<a href="https://saefolder-96ef8.firebaseapp.com/">SaeFolder</a>
</li>
<li class="icon fa-facebook">
<a href="https://www.facebook.com/profile.php?id=100007398006858&ref=bookmarks">facebook.com/kimseungho</a>
</li>
</ul>
</div>
</div>
</section>
</div>
</div>
</div>
<div id="copyright" class="container">
<ul class="links">
<li>© Untitled. All rights reserved.</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</section>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/browser.min.js"></script>
<script src="assets/js/breakpoints.min.js"></script>
<script src="assets/js/util.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>