-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (67 loc) · 2.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Front-end Developer Test Project</title>
<!-- Stylesheets -->
<link rel="stylesheet" href="styles/background.css" />
<link rel="stylesheet" href="styles/breadcrumb.css" />
<link rel="stylesheet" href="styles/componentes.css" />
<link rel="stylesheet" href="styles/container.css" />
<link rel="stylesheet" href="styles/dropdown.css" />
<link rel="stylesheet" href="styles/geral.css" />
<link rel="stylesheet" href="styles/icons.css" />
<link rel="stylesheet" href="styles/inputs.css" />
<link rel="stylesheet" href="styles/space.css" />
<link rel="stylesheet" href="styles/text.css" />
<link rel="stylesheet" href="styles/typography.css" />
<link rel="stylesheet" href="styles/utilities.css" />
<link rel="stylesheet" href="styles/utils.css" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"
rel="stylesheet"
/>
</head>
<body>
<!-- Header Component -->
<div id="component-header"></div>
<!-- Main Component -->
<main class="container">
<!-- Top Controls Component -->
<div id="component-top-controls"></div>
<!-- Content Wrapper Component -->
<div id="component-content-wrapper">
<div class="content-wrapper flex flex-col gap-4">
<div
id="untitle"
class="editable-content"
data-placeholder="Untitled"
>
Untitled
</div>
<div class="divider-bar"></div>
<div id="component-content-area"></div>
</div>
<div class="content-area" id="contentArea">
<input
type="text"
placeholder="Type / for blocks, @ to link docs or people"
id="inputField"
class="input-field"
/>
<div id="component-dropdown"></div>
</div>
</div>
</main>
<!-- Scripts -->
<script src="scripts/utils.js"></script>
<script src="scripts/componentLoader.js"></script>
<script src="scripts/contentManagement.js"></script>
<script src="scripts/dropdown.js"></script>
<script src="scripts/editableContent.js"></script>
<script src="scripts/eventHandlers.js"></script>
<script src="scripts/eventListeners.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>