HTML의 태그는 삭제된 텍스트를 표시하는 데 사용되며 특정 텍스트/텍스트에 줄을 표시합니다.
다음은 태그 -
- 인용 − 텍스트가 삭제된 이유를 알려주는 URL
- 날짜/시간 − 텍스트가 삭제된 날짜 및 시간입니다.
이제 HTML에서 요소를 구현하는 예를 살펴보겠습니다 -
예시
<!DOCTYPE html> <html> <body> <h2>Player Details with Reporting Time</h2> <p>These are the <ins>details with reporting time</ins></p> <form> <fieldset> <legend>New Details −</legend> Player − <input type="text"><br> Rank − <input type="number"><br> Email − <input type="email"><br> Reporting Time − <input type="time"> </fieldset> </form> <p><del>All data captured before the World Cup.<del></p> </body> </html>
전체 줄을 삭제했으므로 경고 텍스트를 표시하는 다음 출력이 생성됩니다. -
위의 예에서 요소 −
<del> All data captured before the World Cup. <del>
이제 파선된 텍스트를 볼 수 있습니다.