-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
130 lines (129 loc) · 3.78 KB
/
index.html
File metadata and controls
130 lines (129 loc) · 3.78 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Text editer</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<main>
<h1>Online Text Editer</h1>
<div class="container">
<div class="btn_wrapper">
<button type="button" class="utils" onclick="f1()" title="Bold">
Bold
</button>
<button type="button" class="utils" onclick="f2()" title="Italic">
Italic
</button>
<button type="button" class="utils" onclick="f3()" title="Left Align">
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
class="lucide lucide-align-left"
>
<line x1="21" x2="3" y1="6" y2="6" />
<line x1="15" x2="3" y1="12" y2="12" />
<line x1="17" x2="3" y1="18" y2="18" />
</svg>
</button>
<button
type="button"
class="utils"
onclick="f4()"
title="Center Align"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
class="lucide lucide-align-center"
>
<line x1="21" x2="3" y1="6" y2="6" />
<line x1="17" x2="7" y1="12" y2="12" />
<line x1="19" x2="5" y1="18" y2="18" />
</svg>
</button>
<button
type="button"
class="utils"
onclick="f5()"
title="Right Align"
>
<svg
xmlns="http://www.w3.org/2000/svg"
width="24"
height="24"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="1"
stroke-linecap="round"
stroke-linejoin="round"
class="lucide lucide-align-right"
>
<line x1="21" x2="3" y1="6" y2="6" />
<line x1="21" x2="9" y1="12" y2="12" />
<line x1="21" x2="7" y1="18" y2="18" />
</svg>
</button>
<button
type="button"
class="utils"
onclick="f6()"
title="Uppercase Text"
>
Uppercase
</button>
<button
type="button"
class="utils"
onclick="f7()"
title="Lowercase Text"
>
Lowercase
</button>
<button
type="button"
class="utils"
onclick="f8()"
title="Capitalize Text"
>
Capitalize
</button>
<button type="button" class="utils" onclick="f9()" title="Clear Text">
Clear
</button>
</div>
<textarea
name="textarea"
id="textarea"
placeholder="Enter your text"
></textarea>
</div>
<!-- <button type="button" class="utils">Download</button> -->
</main>
<footer>
<p style="text-align: center; padding-bottom: 2rem">
Created by
<a target="_blank" href="https://github.com/vikashpatel04"
>Vikash Patel</a>
</p>
</footer>
<script src="main.js"></script>
</body>
</html>