This commit is contained in:
Ilya Kantor 2017-03-24 17:28:37 +03:00
parent c9401b3104
commit 0fcf9f84fa
58 changed files with 673 additions and 643 deletions

View file

@ -2,7 +2,7 @@ JavaScript-code:
```js demo run
let name = prompt("What is your name?", "");
alert( name );
alert(name);
```
The full page:
@ -10,18 +10,15 @@ The full page:
```html
<!DOCTYPE html>
<html>
<body>
<script>
'use strict';
let name = prompt("What is your name?", "");
alert( name );
alert(name);
</script>
</body>
</html>
```

View file

@ -4,7 +4,6 @@ importance: 4
# A simple page
Create a web-page which asks for a name and outputs it.
Create a web-page that asks for a name and outputs it.
[demo]