-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (50 loc) · 1.81 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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="UTF-8">
<title>chrome_memo</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="css/all.css">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/bootstrap.bundle.js"></script>
</head>
<body>
<div class="header">
<ul class="nav nav-tabs" id="my_tab" role="tablist"></ul>
<div class="header-buttons">
<i id="add" class="fas fa-plus-square icon"></i>
<i id="delete" class="fas fa-minus-square icon"></i>
</div>
</div>
<div class="tab-content" id="my_tab_content">
<textarea name="memo-area" id="memo_area" class="memo-area" cols="30" rows="10"></textarea>
<div class="memo-footer">
<p id="count_area"><span id="count">0</span><span id="count_unit"></span></p>
<p id="save_message"><span id="memo_name"></span> <span id="save_text"></span></p>
</div>
</div>
<div class="footer">
<div class="button-box">
<button type="button" id="download" class="btn btn-outline-secondary icon-button">
<i class="fas fa-file-download icon"></i>
<p class="icon-text"><span id="download_text">download</span></p>
</button>
</div>
<div class="button-box slide-box">
<button type="button" id="resize" class="btn btn-outline-secondary icon-button">
<i class="far fa-window-maximize icon"></i>
<input type="range" id="size_input" min="360" max="800" step="5" value="400">
<p class="icon-text"><span id="resize_text">resize</span></p>
</button>
</div>
<div class="button-box">
<button type="button" id="option" class="btn btn-outline-secondary icon-button">
<i class="fas fa-cog icon"></i>
<p class="icon-text"><span id="option_text">option</span></p>
</button>
</div>
</div>
<script src="js/content.js"></script>
</body>
</html>