-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
24 lines (22 loc) · 824 Bytes
/
index.htm
File metadata and controls
24 lines (22 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="fa">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>پروژه تغییر رنگ و فونت</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="controls">
<button id="changeBackground">تغییر رنگ پسزمینه</button>
<button id="changeFont">تغییر فونت</button>
<button id="addEmoji">اضافه کردن ایموجی</button>
<button id="changeTextColor">تغییر رنگ متن</button>
</div>
<div class="container">
<div id="text" contenteditable="true">type a status</div>
</div>
<div id="emojiPicker" class="emoji-picker"></div>
<script src="script.js"></script>
</body>
</html>