Permalink
1 comment
on commit
sign in to comment.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
with
36 additions
and 0 deletions.
- +9 −0 ex_html1.html
- +9 −0 ex_html2.html
- +18 −0 ex_html3.html
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
</head> | ||
<body> | ||
안녕하세요. <strong>생활코딩</strong>입니다. | ||
</body> | ||
</html> |
@@ -0,0 +1,9 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
</head> | ||
<body> | ||
안녕하세요. <a href="http://opentutorials.org/course/1" target="_blank">생활코딩</a>입니다. | ||
</body> | ||
</html> |
@@ -0,0 +1,18 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8" /> | ||
</head> | ||
<body> | ||
<ol> | ||
<li>html</li> | ||
<li>css</li> | ||
<li>JavaScript</li> | ||
</ol> | ||
<ul> | ||
<li>최진혁</li> | ||
<li>최유빈</li> | ||
<li>한이람</li> | ||
</ul> | ||
</body> | ||
</html> |
This comment has been minimized.
7883ca5
Thanks!