0% found this document useful (0 votes)
29 views3 pages

He HTML Tag: Example

The document discusses several questions regarding fire safety requirements for a building. It asks about the maximum evacuation distance to the nearest manual fire alarm activator, the number of acoustic notification devices needed to reach the recommended sound level, when supplementary notification is required via additional display panels, when visual notification devices are required, and whether special measures are needed to protect electrical circuits from mechanical damage, fire, or electromagnetic interference.

Uploaded by

Bogdan Chindris
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
29 views3 pages

He HTML Tag: Example

The document discusses several questions regarding fire safety requirements for a building. It asks about the maximum evacuation distance to the nearest manual fire alarm activator, the number of acoustic notification devices needed to reach the recommended sound level, when supplementary notification is required via additional display panels, when visual notification devices are required, and whether special measures are needed to protect electrical circuits from mechanical damage, fire, or electromagnetic interference.

Uploaded by

Bogdan Chindris
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

precizati , avind in vedere caracterisiticile cladirii, care este distamta maxima ce trebuie parcursa, pe

calea de evacuare, in sensul de evacuare, pana la cel maiapropiat declansator manual de alarma?
5. Precizati daca este limitat numarul de dispozitive de alarmare acustica pentru atingerii nivelului de
sunet recomandat.
6. precizati in ce conditii este necesara asigurarea retranslatiei de catre ECS a informatiilor in cladire
prin intermediul panourilor suplimentare?
7. precizati in ce situatii ce pot fi aplicate cladirii din tema este obligatorie utilizarea unor dispositive de
alarmare vizuala.?
8. precizati daca accesul pompierilor in cladire se bazeaza pe prezenta semnalelor acustice date de
sirenele exterioare.
9. precizati daca este necesar prevederea de masuri speciale de separare pentru protectia mecanica,
protectia la foc si pentru reducerea perturbatiilor electromagnetice a coloanelor verticale in apropierea de
circuitele electrice de joasa tensiune?

he HTML <script> Tag


The HTML <script> tag is used to define a client-side script (JavaScript).

The <script> element either contains script statements, or it points to an external


script file through the src attribute.

Common uses for JavaScript are image manipulation, form validation, and
dynamic changes of content.

To select an HTML element, JavaScript most often uses


the document.getElementById() method.

This JavaScript example writes "Hello JavaScript!" into an HTML element with
id="demo":

Example
<script>
document.getElementById("demo").innerHTML = "Hello JavaScript!";
</script>
Try it Yourself »
Tip: You can learn much more about JavaScript in our JavaScript Tutorial.
A Taste of JavaScript
Here are some examples of what JavaScript can do:

Example
JavaScript can change content:

document.getElementById("demo").innerHTML = "Hello JavaScript!";
Try it Yourself »

Example
JavaScript can change styles:

document.getElementById("demo").style.fontSize = "25px";
document.getElementById("demo").style.color = "red";
document.getElementById("demo").style.backgroundColor = "yellow";
Try it Yourself »

Example
JavaScript can change attributes:

document.getElementById("image").src = "picture.gif";
Try it Yourself »

The HTML <noscript> Tag


The HTML <noscript> tag defines an alternate content to be displayed to users
that have disabled scripts in their browser or have a browser that doesn't support
scripts:

Example
<script>
document.getElementById("demo").innerHTML = "Hello JavaScript!";
</script>
<noscript>Sorry, your browser does not support JavaScript!</noscript>
Try it Yourself »
HTML Exercises
Test Yourself With Exercises
Exercise:
Use JavaScript to change the HTML content of the <p> element to "Hello World!".

<body>

<p id="demo">Hi.</p>

<script>
document. ("demo").innerHTML = "Hello World!";
</script>

</body>

Submit Answer »

Start the Exercise

HTML Script Tags


Tag Description

<script> Defines a client-side script

<noscript> Defines an alternate content for users that do not support client

For a complete list of all available HTML tags, visit our HTML Tag Reference.

You might also like