-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
40 lines (40 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>JavaScript-инженер</title>
<link rel="stylesheet" href="./styles/editor.css" />
<link rel="stylesheet" href="./styles/page.css" />
</head>
<body>
<div class="container">
<main class="papercard">
<div class="editor">
<div class="edit-area" placeholder="Type something..."></div>
<div class="toolkit">
<button class="head-1">
<img src="assets/icons_h1.svg" alt="Head 1 button icon" />
</button>
<button class="head-2">
<img src="assets/icons_h2.svg" alt="Head 2 button icon" />
</button>
<button class="bold">
<img src="assets/icons_bold.svg" alt="Bold button icon" />
</button>
<button class="italic">
<img src="assets/icons_italic.svg" alt="Italic button icon" />
</button>
</div>
</div>
</main>
<footer>
<p class="authority">
<b>Disgned</b> by
<a href="https://dribbble.com/yaroslavsamoilov" target="_blank"
>Yaroslav Samoilov</a
>
</p>
</footer>
</div>
</body>
</html>