<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> 요기는 제목이에요. </title>
<!-- 눈에 보이지는 않지만,필요한 부분 -->
</head>
<body>
<!-- 눈에 보이는 부분-->
<h1 title="이건 툴팁">안녕하세요?</h1>
<h6>이글자는 h6</h6>
<p>
여러 줄을
</p>
<pre>
쓰고 있어요.
흐흐흐
10 < true
</pre>
10 < ture
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<video src="media/bear.mp4" width=320 height=240
controis autoplay>브라우저가 video 지원안함.</video>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<form name="myform" method="get">
사용자ID: <input type ="text" size=15 value=""> <br>
암호:<input type="password" size=15>
<input type="submit" value="로그인">
</form>
</body>
</html>