0
Doubt
Can script tag be used in head and body tag both together?
1 ответ
+ 3
yes,you can your script tags in both head and body.
<html>
<head>
<script></script>
</head>
<body>
<script></script>
</body>
</html>
Can script tag be used in head and body tag both together?