-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (29 loc) · 1.13 KB
/
index.html
File metadata and controls
32 lines (29 loc) · 1.13 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<title>RespondoAqui</title>
<link rel="icon" href="./public/logo.png" type="image/x-icon" />
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description"
content="RespondoAqui, frontend alternativo do RespondeAí sem filtros para a resolução dos exercícios.">
<meta name="keywords" content="RespondoAqui, RespondeAí, respostas, exercícios, questões, soluções">
<meta name="author" content="RespondoAqui">
<link href="./styles.css" rel="stylesheet">
</head>
<body>
<div class="header-container">
<h1 id="title">Respondo</h1>
<img src="./public/logo.png" alt="RespondoAqui" id="logo">
</div>
<h2>Todas as respostas para os exercícios que você queria, sem filtros.</h2>
<form id="download-form">
<p>URL da resolução da questão:</p>
<input type="text" id="url-input" placeholder="https://www.respondeai.com.br/conteudo/...">
<button id="download-button">Responder</button>
<div id="error-message"></div>
</form>
<div id="cleaned-html"></div>
</body>
<script src="main.js"></script>
</html>