0
How to do function on html?
4 Respuestas
+ 8
in html are no functions
+ 7
HTML is a Hypertext Markup language, which mark webpages with elements, html ignore any programming concepts and displays as plain text when its inside <body> tag.
but you can write Javascript function inside a <script> tag in .hmtl file.
<script>
....
function ()
....
</script>
+ 1
Execute functions in js, not in html. Html and css have no functions
+ 1
thanks for all of you