-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathverbos-pt.html
60 lines (56 loc) · 2.76 KB
/
verbos-pt.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600">
<link rel="stylesheet" type="text/css" href="conj-teste.css" />
<link rel="stylesheet" type="text/css" href="autocomplete.css" />
<script src="autocomplete.js"></script>
<title>Portuguese Verbs Conjugation & Quiz Tool — Ferramenta de Conjugação e Teste de Verbos em Português</title>
</head>
<body>
<div id="page" class="container">
<div id="topmost_band">
<header id="site_header">
<div>
<div id="header_text_block">
<h1>Portuguese Verbs Conjugation & Quiz Tool<br>
Ferramenta de Conjugação e Teste de Verbos em Português</h1>
<div class="HeadBeginText">Simply select a Portuguese verb and then click "Quiz!" or "Conjugate!"<br>
Basta selecione um verbo em português e clique em "Questionar! (Quiz)" ou "Conjugar!"</div>
<div class="sub-note ">Learn all the varied conjugated forms of Portuguese Verbs through Quizzes<br>
Aprenda todas as variadas formas conjugadas de Verbos Portugueses através de Quizzes</div>
</div>
</div>
</header>
</div> <!-- END: topmost_band -->
<div id="main-region" class="main-body-container">
<div class="subject-note">Select the verb to conjugate — Impersonal Infinitive / Infinitivo Impessoal</div>
<div class="vselect-note">
<div class="vselect-label">Verbo:</div>
<div id="inVerbs" contenteditable="true" class="edit-div" tabindex="0"></div>
</div>
<div id="action-buttons">
<div id="btnQuiz" class="d-btn" data-tag="1" tabindex="0">Quiz!</div>
<div id="btnConj" class="d-btn" data-tag="2" tabindex="0">Conjugate!</div>
<div id="btnConf" class="d-btn" data-tag="3" tabindex="0">Settings</div>
</div>
</div>
<!--=========================================-->
<!--BEGIN: ES-BUILT CONJUGATIONS, QUIZ, ETC -->
<!--=========================================-->
<div id="workarea">
</div> <!-- workarea (built-area of page) -->
<!--=========================================-->
<!--END: BUILT-AREA -->
<!--=========================================-->
<div class="footer-row">
<a href="conjugador-teste.html">Esta Ferramenta de Conjugação e de Teste de Verbos do Português ("Quiz")</a>
é Copyright © Michael Eberhart, 2023, All Rights Reserved
</div>
</div> <!-- main-region -->
</div> <!-- container -->
</body>
<script async type="module" src="main.js"></script>
</html>