-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (29 loc) · 1.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./main.css">
<title>Lista Tarefas</title>
</head>
<body>
<!-- Na tarefa deste módulo, você deve:
1) Criar uma aplicação de lista de tarefas contendo um formulário com um campo para adicionar o nome da tarefa e um botão para cadastrar a tarefa.
2) Ao submeter o formulário, adicione um elemento <li> dentro de
uma lista ordenada ou não.
3) Ao clicar nos itens da lista, adicione um efeito que aplique uma linha em cima do texto (text-decoration: line-through).
4) Utilize o jQuery para manipular os elementos e controlar os eventos.
5) Crie uma branch chamada exercício_jquery no repositório do curso e nos envie o link através da plataforma. -->
<h1>
<p>Lista de <mark>Tarefas</mark></p>
</h1>
<form id="form-tarefa">
<input type="text" id="nomeTarefa" placeholder="Adicionar uma tarefa">
<button type="submit">Cadastrar</button>
</form>
<ul id="tarefa-cadastrada">
</ul>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="main.js"></script>
</body>
</html>