Share:
Notifications
Clear all

Earn While Learning Web3 Programming>> Start Here FREE!!!

[Solved] What Is HTML Script Element ?

3 Posts
3 Users
4 Reactions
389 Views
1
Topic starter

EXERCISE:

i. Watch the above lesson video and also read through the recommended resources. Then, answer following questions

ii. What Is HTML Script Element?

iii. How To Write "script Element" with "script tag" in HTML?

iv. Summarize in your own word in this forum below:
(NOTE: please, don't just copy paste from other students - instead answer in your own word base on your level of understanding the lesson and resources)

 

 

NOTE:

This Is An Exercise From Our FREE COURSE with CERTIFICATION:

 HTML For Web3 dApp Development Course

(If you have not enrolled yet, you can join the course totally for FREE).

 

3 Answers
1
Topic starter

What Is HTML Script Element?

 - HTML Script Element is used to add scripts and scripting language codes like JavaScript inside an HTML        document.

- it is placed inside the HTML head or body element.

- How To Write "script" Element with a script tag in HTML

   
 

<script> scripts goes in-between here</script>
<script>
alert("Welcome To dProgramming University HTML For Web3 Course");
</script>

1

HTML SCRIPT ELEMENT

It is placed inside HTML head or body element

It enable developers/ authors to insert scripts and scripting language codes like JavaScript into the HTML document.

 

HOW TO WRITE HTML SCRIPT ELEMENT

<script> scripts goes in-between here</script>
<script>
alert("Welcome To dProgramming University HTML For Web3 Course");
</script>

 

1

HTML SCRIPT ELEMENT is placed inside HTML head or body element and it enable developers to insert scripts and scripting language codes like JavaScript into the HTML document.

It is always advisable to place the HTML SCRIPT ELEMENT at the end before the body tag closure 

 

HOW TO WRITE HTML SCRIPT ELEMENT

<script> scripts goes in-between here</script>
<script>
alert("Welcome To dProgramming University HTML For Web3 Course");
</script>
Share: