fix and deploy

pull/106/head
momin-riyadh 5 years ago
parent ff64df9419
commit 63cdd536f6

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

@ -0,0 +1,5 @@
<component name="ProjectCodeStyleConfiguration">
<state>
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
</state>
</component>

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/30-Days-Of-JavaScript.iml" filepath="$PROJECT_DIR$/.idea/30-Days-Of-JavaScript.iml" />
</modules>
</component>
</project>

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="">
<head>
<title>30DaysOfJavaScript</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript: 03 Day</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:05 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:06 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:07 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:08 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:09 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:10 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:11 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:11 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:13 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:12 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:15 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:16 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:17 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:18 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:19 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:20 Day </title>

@ -57,7 +57,7 @@ We can access already created element or elements using JavaScript. To access or
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model</title>
</head>
@ -234,7 +234,7 @@ It value we assign is going to be a string of HTML elements.
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>JavaScript for Everyone:DOM</title>
</head>
@ -264,7 +264,7 @@ The innerHTML property can allow us also to remove all the children of a parent
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>JavaScript for Everyone:DOM</title>
</head>
@ -378,7 +378,7 @@ As you have notice, the properties of css when we use it in JavaScript is going
```html
<!-- index.html -->
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>JavaScript for Everyone:DOM</title>
</head>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:21 Day </title>

@ -43,7 +43,7 @@ document.createElement('tagname')
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
@ -71,7 +71,7 @@ After we create the element we can assign value to the different properties of t
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
@ -100,7 +100,7 @@ To see a created element on the HTML document we should append it to the parent
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
@ -131,7 +131,7 @@ After creating an HTML, we may want to remove element or elements and we can use
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
@ -167,7 +167,7 @@ As we have see in the previous section there is a better way to eliminate all th
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:22 Day: Number Generator </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:22 Day: World Countries List</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:22 Day: Challenge Info</title>

@ -62,7 +62,7 @@ The following is an example of click type event.
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model</title>
</head>
@ -91,7 +91,7 @@ An event can be also attached directly to the HTML element as inline script.
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model</title>
</head>
@ -116,7 +116,7 @@ The following is an example of click type event.
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model</title>
</head>
@ -148,7 +148,7 @@ The following is an example of click type event.
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model</title>
</head>
@ -198,7 +198,7 @@ We usually fill forms and forms accept data. Form fields are created using input
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
</head>
@ -232,7 +232,7 @@ In the above example, we managed to get input values from two input fields by cl
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
</head>
@ -261,7 +261,7 @@ In contrast to _input_ or _change_, the _blur_ event occur when the input field
```js
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
@ -294,7 +294,7 @@ We can access all the key numbers of the keyboard using different event listener
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>
</head>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:23 Day: Number Generator </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:23 Day: Keyboard Key </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Solar System: Document Object Model:30 Days Of JavaScript</title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:11 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:11 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:11 Day </title>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript: Day 29 - Project 2 </title>

@ -12,7 +12,7 @@
<small> January, 2020</small>
</sub>
</div>
</div>
<div>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:30 </title>

@ -281,7 +281,7 @@ JavaScript можно добавить на веб-страницу тремя
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfScript: Встроенный скрипт</title>
</head>
@ -302,7 +302,7 @@ JavaScript можно добавить на веб-страницу тремя
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfScript: Внутренний скрипт</title>
<script>
@ -317,7 +317,7 @@ JavaScript можно добавить на веб-страницу тремя
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfScript: Внутренний скрипт</title>
</head>
@ -349,7 +349,7 @@ console.log("Добро пожаловать на 30 дней JavaScript");
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript: Внешний скрипт</title>
<script src="introduction.js"></script>
@ -362,7 +362,7 @@ console.log("Добро пожаловать на 30 дней JavaScript");
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:External script</title>
</head>
@ -386,7 +386,7 @@ console.log("Hello, World!");
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Multiple External Scripts</title>
</head>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>

@ -254,7 +254,7 @@ Las siguientes secciones muestran diferentes formas de añadir código JavaScrip
Crea una carpeta en tu escritorio y llámala 30DíasDeJS o en cualquier lugar y crea un archivo **_index.html_** en la carpeta del proyecto. Luego pega el siguiente código y ábrelo en un navegador, ya sea en [Chrome](https://www.google.com/chrome/).
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DíasDeJS:Inline Script</title>
</head>
@ -271,7 +271,7 @@ Ahora, escribiste tu primer inline script. Podemos crear un mensaje de alerta em
El Script interno puede ser escrito en la cabecera del código _('head')_ o en el cuerpo _('body')_, pero es preferible ponerlo en el cuerpo del documento HTML. Primero, escribamos en la parte de la cabeza de la página.
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DíasDeJS:Scripts Internos</title>
<script>
@ -285,7 +285,7 @@ El Script interno puede ser escrito en la cabecera del código _('head')_ o en e
Así es como escribimos el guión interno la mayor parte del tiempo. Escribir el código de JavaScript en la sección del body es el lugar más recomendado. Abre la consola del navegador para ver la respuesta del console.log()
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DíasDeJS:Scripts Internos</title>
</head>
@ -310,7 +310,7 @@ Al igual que el script interno, el enlace del script externo puede estar en la c
**Script externo en la cabecera**
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DíasDeJS:Scripts Externos</title>
<script src="introduction.js"></script>
@ -322,7 +322,7 @@ Al igual que el script interno, el enlace del script externo puede estar en la c
**Script externo en el cuerpo**
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DíasDeJS:Scripts Externos</title>
</head>
@ -343,7 +343,7 @@ Podemos enlazar múltiples archivos externos de JavaScript a una página web. Cr
<!DOCTYPE html>
<html>
<html lang="en">
<cabeza>
<título>Múltiples guiones externos</título>
</cabeza>

@ -1,5 +1,5 @@
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Document Object Model:30 Days Of JavaScript</title>

@ -325,7 +325,7 @@ Create a project folder on your desktop or in any location, name it 30DaysOfJS a
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfScript:Inline Script</title>
</head>
@ -344,7 +344,7 @@ First, let us write on the head part of the page.
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfScript:Internal Script</title>
<script>
@ -359,7 +359,7 @@ This is how we write an internal script most of the time. Writing the JavaScript
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfScript:Internal Script</title>
</head>
@ -389,7 +389,7 @@ External scripts in the _head_:
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:External script</title>
<script src="introduction.js"></script>
@ -402,7 +402,7 @@ External scripts in the _body_:
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>30DaysOfJavaScript:External script</title>
</head>
@ -427,7 +427,7 @@ console.log('Hello, World!')
```html
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>Multiple External Scripts</title>
</head>

Loading…
Cancel
Save