-
Notifications
You must be signed in to change notification settings - Fork 60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Guardando primer cambio Natalia Olmos #36
base: master
Are you sure you want to change the base?
Conversation
src/cifrar.html
Outdated
</head> | ||
<div align="center"><h1>CIFRAR</h1> | ||
<script src="cifrar.js"></script> | ||
</head> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aquí tiene una etiqueta de más.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gracias Adriana!!! lo tomaré en cuenta!! :)
src/cifrar.html
Outdated
<script src="cifrar.js"></script> | ||
</head> | ||
<body> | ||
<div align="center"><p>Introduce el texto y número de desplazamientos para comenzar</p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sugiero que el acomodo de los elementos, así como los estilos vayan en el CSS
src/cifrar.html
Outdated
<body> | ||
<div align="center"><p>Introduce el texto y número de desplazamientos para comenzar</p> | ||
<div align="center"><p>Texto:</p><form name="formulario1"> | ||
<textarea placeholder="Escribe aquí el texto..." type="text1" name="caja1" value="" size=20 cols="75" rows="7"></textarea> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
El type solo es text.
src/cifrar.html
Outdated
<div align="center"> <p>Número desplazamientos:</p><form name="desplazar" method="post" action="mostrarMensaje"> | ||
<!-- Lista de selección --> | ||
<div align="center"><select name="combo"> | ||
<!-- Opciones de la lista --> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recordemos que los comentarios solo cuando sean necesarios, esto es bastante explícito.
src/cifrar.html
Outdated
</select> | ||
</form> | ||
<div align="center"><input type="button" value="cifrar" onclick="decodificar()"></p> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Lo mismo aqui
src/descifrar.html
Outdated
</head> | ||
<div align="center"><h1>DESCIFRAR</h1> | ||
<script src="cifrar.js"></script> | ||
</head> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Misma etiqueta de cierre.
src/descifrar.html
Outdated
<link href="styledescifrar.css" rel="stylesheet" type="text/css"/> | ||
</head> | ||
<div align="center"><h1>DESCIFRAR</h1> | ||
<script src="cifrar.js"></script> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
La indentación y legibilidad es bien importante, procura tener consistencia.
src/stylecifrar.css
Outdated
@@ -0,0 +1,16 @@ | |||
body { background-color: #F7F07B; | |||
position: absolute; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hay que aplicar buenas prácticas, este código no es tan legible.
No description provided.