%%html
<!-- 사용 예 -->
<div class="wrapper">
<button class="btn no1" type="button" value="1">HTML 1</button>
<button class="btn no2" type="button" value="2">HTML 2</button>
</div>
<!-- HTML 웹문서의 기본적인 구조 -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
</head>
<body>
</body>
</html>
%%html
<h1>Heading</h1>
<h2>Heading</h2>
<h3>Heading</h3>
<h4>Heading</h4>
<h5>Heading</h5>
<h6>Heading</h6>
%%html
<p>HTML은 마크업 언어 입니다.</p>
<p>p 태그는 한줄로 문자열을 출력합니다.</p>
HTML은 마크업 언어 입니다.
p 태그는 한줄로 문자열을 출력합니다.
%%html
<span class="s1">span-tag-0</span>
<span class="s2">span-tag-1</span>
<span class="s3">span-tag-2</span>
span-tag-0
span-tag-1
span-tag-2
%%html
<p>
python
datascience
</p>
<pre>
python
datascience
</pre>
python datascience
python datascience
%%html
<code>
var a = 10;
var b = 20;
print("{} + {} = {}".format(a, b, a + b));
</code>
var a = 10;
var b = 20;
print("{} + {} = {}".format(a, b, a + b));
%%html
<div>
<p>div1</p>
<p>div1</p>
<p>div1</p>
</div>
<div>div2</div>
<div>div3</div>
div1
div1
div1
%%html
<table>
<caption>테이블</caption>
<thead>
<tr>
<th>html_1</th>
<th>html_2</th>
</tr>
</thead>
<tbody>
<tr>
<th>html_3</th>
<th>html_4</th>
</tr>
</tbody>
</table>
html_1 | html_2 |
---|---|
html_3 | html_4 |
%%html
<ul>
<li>ul_li_1</li>
<li>ul_li_2</li>
<li>ul_li_3</li>
</ul>
target="_blank"
는 링크를 열때 새탭에서 열도록 하는 기능이 있습니다.%%html
<a href="http://google.com" target="_blank">Google</a>
<a href="01_html_1.md">html basic</a>
%%html
<img src="https://cfm.kt.com/images/v2/layout/gnb-ktlogo.png" alt="kt logo">
%%html
<iframe src="https://www.youtube.com/watch?v=euR76oRd7L4" width="100%" height="400">이 브라우저는 iframe을 지원하지 않습니다</iframe>
%%html
<input type="text" name="" value="" placeholder="이메일">
%%html
<input type="password" name="" value="" placeholder="패스워드">
%%html
<input type="radio" name="radio1" value="1">라디오1</input>
<input type="radio" name="radio1" value="2">라디오1</input><br>
<input type="radio" name="radio2" value="3">라디오2</input>
<input type="radio" name="radio2" value="4">라디오2</input>
<input type="radio" name="radio2" value="5">라디오2</input><br>
라디오1
라디오1
라디오2
라디오2
라디오2
%%html
<input type="checkbox" name="checkbox1" value="1">체크박스1</input>
<input type="checkbox" name="checkbox1" value="2">체크박스2</input>
체크박스1
체크박스2
%%html
<select>
<option value="1">option 1</option>
<option value="2">option 2</option>
<option value="3">option 3</option>
</select>
option 1
option 2
option 3
%%html
<textarea name="name" rows="4" cols="30" ></textarea>
%%html
<button type="button">Click</button>
Click