HTML ಕಾಮೆಂಟ್ ಟ್ಯಾಗ್ | HTML ಕಾಮೆಂಟ್ ಉದಾಹರಣೆಗಳು | HTML ಕಾಮೆಂಟ್ ಕೋಡ್ ಜನರೇಟರ್
<!-- This is an HTML comment --/
ಮುಕ್ತ ಡಿಲಿಮಿಟರ್ ಅನ್ನು ಕಾಮೆಂಟ್ ಮಾಡಿ:
<!--
ನಿಕಟ ಡಿಲಿಮಿಟರ್ ಅನ್ನು ಕಾಮೆಂಟ್ ಮಾಡಿ:
--/
ನೀವು ಕೋಡ್ಗೆ ವಿವರಣೆಯನ್ನು ಸೇರಿಸಲು ಬಯಸಿದಾಗ ತಿಳಿವಳಿಕೆ ಪಠ್ಯ ಕಾಮೆಂಟ್ಗಳನ್ನು ಬಳಸಿ.
HTML ಕೋಡ್:
<!-- this is a single line comment --/
	<p/ some text ... </p/
	<!--
	    this is
	    a multiline
	    comment
	--/
	<p/ some more text ... </p/
ಫಲಿತಾಂಶ ಪುಟ ವೀಕ್ಷಣೆ:
some text ...
	some more text ...
ನೀವು ಕೋಡ್ ಅನ್ನು ನಿಷ್ಕ್ರಿಯವಾಗಿಡಲು ಬಯಸಿದಾಗ ಕೋಡ್ ಕಾಮೆಂಟ್ ಅನ್ನು ಬಳಸಿ.
HTML ಕೋಡ್:
<!-- <p/ some text ... </p/ -->
	<!--
	<p> some text ... </p>
	<p> some text ... </p>
	-->
	<p> some more text ... </p>
ಫಲಿತಾಂಶ ಪುಟ ವೀಕ್ಷಣೆ:
some more text ...
Advertising