HTML의
다음은 속성입니다 -
- 날짜/시간 :표시할 날짜-시간입니다.
이제 HTML에서
예시
<!DOCTYPE html> <html> <body> <h2>Schedule</h2> <p>Exams begins from next <time datetime="06-15">Saturday</time>.</p> <p>Exam begins at <time>09:00</time> in the morning.</p> </body> </html>
출력
위의 예에서
를 사용하여 날짜와 시간을 설정했습니다.<p>Exams begins from next <time datetime="06-15">Saturday</time>.</p>
시간만 설정하려면 아래와 같이
<p>Exam begins at <time>09:00</time> in the morning.</p>