-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (40 loc) · 1.54 KB
/
index.html
File metadata and controls
43 lines (40 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>¿Ya puedes trabajar en IT?</title>
<link rel="shortcut icon" href="./src/img/favicon.svg" type="image/x-icon">
<link rel="stylesheet" href="./src/css/main.css">
<meta name="author" content="Miguel Amador" />
<meta name="description" content="Validad si ya puedes trabajar en la industria de la programacion" />
<meta name="keywords" content="Trabajo, IT, Tecnologia, edad, trabajar, programacion" />
<meta name="company" content="Trabajo, IT, Tecnologia, edad, trabajar, programacion" />
<meta name="robots" content="index, follow" />
<meta name="language" content="es" />
</head>
<body>
<main class="wrapper">
<header class="header">
<h1>¿Estas listo para trabajar en IT?</h1>
</header>
<form id="form">
<label for="userName">
Ingresa tu nombre, por favor
<input type="text" id="userName">
</label>
<label for="userAge">
Ingresa tu edad, por favor
<input type="text" id="userAge">
</label>
<button type="submit">¿Ya puedo trabajar?</button>
</form>
<section id="feedbackWrapper">
</section>
</main>
<footer class="footer">
Desarrollado por <a href="https://github.com/migueweb" target="_blank">@migueweb</a>
</footer>
<script src="./src/js/main.js"></script>
</body>
</html>