-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
91 lines (82 loc) · 3.64 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
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="utf-8">
<title>Rich-Text</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/font-awesome-4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="css/jquery-ui.css">
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/jquery-1.10.2.js"></script>
<script src="js/jquery-ui.js"></script>
</head>
<body>
<div id="editor">
<div id="navbar">
<div id="menu">
<button id="bold"></button>
<button id="italic"></button>
<button id="underline"></button>
<button id="strikethrough"></button>
<button id="superscript"></button>
<button id="subscript"></button>
<button id="unordered-list"></button>
<button id="ordered-list"></button>
<button id="dd-fore-color"></button>
<button id="dd-back-color"></button>
<button id="align-left"></button>
<button id="align-center"></button>
<button id="align-right"></button>
<button id="align-justify"></button>
<button id="indent"></button>
<button id="outdent"></button>
<button id="url"></button>
<button id="font-size"></button>
<button id="horizontal-rule"></button>
<button id="font-family"></button>
<button id="heading"></button>
<button id="checkbox"></button>
<button id="image"></button>
<button id="emojis"></button>
<button id="quote"></button>
<button id="eraser"></button>
</div>
</div>
<div id="main" contenteditable="true">
Selecione os trechos que quer formatar e clique em uma das opções de formatação.<br><br>
Teste o texto negrito.<br>
Teste o texto itálico.<br>
Teste o texto sublinhado.<br>
Teste o texto riscado.<br>
Teste o texto sobrescrito.<br>
Teste o texto subscrito.<br><br>
Teste a lista não ordenada.<br>
Item 1<br>
Item 2<br>
Item 3<br><br>
Teste a lista ordenada:<br>
Item 1<br>
Item 2<br>
Item 3<br><br>
Teste a cor do texto.<br>
Teste a cor de fundo.<br>
Teste a mistura da cor do texto com a cor do fundo.<br><br>
Teste os alinhamentos:<br>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.<br><br>
Teste a indentação.<br>
Adicione um link (ex.: https://www.google.com.br).<br>
Altere o tamanho da fonte.<br>
Adicione uma linha horizontal para separar os conteúdos.<br>
Altere a família da fonte.<br>
Adicione um cabeçalho.<br><br>
Adicione uma lista de afazeres:<br>
Tarefa 1<br>
Tarefa 2<br>
Tarefa 3<br><br>
Adicione imagens e redimensione-as clicando em cima delas e depois clicando no canto inferior direito e arrastando o mouse. Para redimensionar mantendo a proporção, mantenha o SHIFT pressionado enquanto arrasta o mouse.<br>
Adicione emojis.
</div>
</div>
</body>
<script src="js/index.js"></script>
</html>