-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (58 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
61 lines (58 loc) · 3.19 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog Editing Tool Bar</title>
<link rel="stylesheet" href="./css/editingtoolbar.min.css">
</head>
<body>
<div class="editing-tool-bar">
<div class="tool-group">
<button class="tool-btn"><img src="./icons/undo.svg" alt="undo"></button>
<button class="tool-btn"><img src="./icons/redo.svg" alt="redo"></button>
</div>
<div class="tool-group">
<button class="tool-btn"><img src="./icons/alignleft.svg" alt="Align left"></button>
<button class="tool-btn"><img src="./icons/aligncenter.svg" alt="Align centre"></button>
<button class="tool-btn"><img src="./icons/alignright.svg" alt="Align right"></button>
<button class="tool-btn"><img src="./icons/alignjustify.svg" alt="Align justify"></button>
</div>
<div class="tool-group">
<div class="input-and-options">
<input type="text" class="input format-name" value="Heading 1">
<button class="options-btn"><img src="./icons/arrow-drop-down.svg" alt="more"></button>
</div>
<div class="input-and-options">
<input type="text" class="input font-name" value="Roboto">
<button class="options-btn"><img src="./icons/arrow-drop-down.svg" alt="more"></button>
</div>
<div class="input-and-options">
<input type="text" class="input font-size" value="16">
<button class="options-btn"><img src="./icons/arrow-drop-down.svg" alt="more"></button>
</div>
</div>
<div class="tool-group">
<button class="tool-btn"><img src="./icons/format-bold.svg" alt="Bold"></button>
<button class="tool-btn"><img src="./icons/format-italic.svg" alt="Italic"></button>
<button class="tool-btn"><img src="./icons/format-underlined.svg" alt="Underline"></button>
<button class="tool-btn"><img src="./icons/strikethrough-s.svg" alt="Strike"></button>
</div>
<div class="tool-group">
<button class="tool-btn"><img src="./icons/color-text.svg" alt="Text color"></button>
<button class="tool-btn"><img src="./icons/color-highlight.svg" alt="Text highlight"></button>
<button class="tool-btn"><img src="./icons/color-fill.svg" alt="Background color"></button>
</div>
<div class="tool-group">
<button class="tool-btn"><img src="./icons/format-subscript.svg" alt="Subscript"></button>
<button class="tool-btn"><img src="./icons/format-superscript.svg" alt="Superscript"></button>
</div>
<div class="tool-group">
<button class="tool-btn"><img src="./icons/insert-link.svg" alt="Insert link"></button>
<button class="tool-btn"><img src="./icons/add-photo.svg" alt="Add photo"></button>
<button class="tool-btn"><img src="./icons/table-plus.svg" alt="Insert table"></button>
<button class="tool-btn"><img src="./icons/attach-file.svg" alt="Attach file"></button>
</div>
</div>
</body>
</html>