-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (37 loc) · 1.44 KB
/
Copy pathindex.html
File metadata and controls
37 lines (37 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Text Editor</h1>
<select name="" id="font-family">
<option value="">Select Font Family</option>
<option value="monospace">Monospace</option>
<option value="serif">Serif</option>
<option value="sans-serif">Sans Serif</option>
</select>
<select name="" id="font-size">
<option value="">Select Font Size</option>
<option value="heading">Heading</option>
<option value="sub-heading">Sub Heading</option>
<option value="normal">Normal</option>
</select>
<div>
<button class="action-btn">Bold</button>
<button class="action-btn">Italic</button>
<button class="action-btn">Underline</button>
<button class="action-btn">Center</button>
<button class="action-btn">Left</button>
<button class="action-btn">Right</button>
<button class="action-btn">Justify</button>
</div>
<div>
<p id="text">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem esse facere error sapiente. Dolores similique, nostrum necessitatibus iste rerum architecto consectetur beatae, eum eos magni ab delectus labore, tempora voluptate!</p>
</div>
<script src="app.js"></script>
</body>
</html>