HTML yorum etiketi | HTML yorum örnekleri | HTML yorum kodu oluşturucu
<!-- This is an HTML comment --/
Yorum açık sınırlayıcı:
<!--
Yorum kapatma sınırlayıcı:
--/
Koda açıklamalar eklemek istediğinizde bilgilendirici metin açıklamaları kullanın.
HTML kodu:
<!-- this is a single line comment --/
<p/ some text ... </p/
<!--
this is
a multiline
comment
--/
<p/ some more text ... </p/
Sonuç sayfası görünümü:
some text ...
some more text ...
Kodu devre dışı bırakmak istediğinizde kod yorumunu kullanın.
HTML kodu:
<!-- <p/ some text ... </p/ -->
<!--
<p> some text ... </p>
<p> some text ... </p>
-->
<p> some more text ... </p>
Sonuç sayfası görünümü:
some more text ...
Advertising