-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (29 loc) · 1.03 KB
/
index.html
File metadata and controls
41 lines (29 loc) · 1.03 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
<!doctype html>
<head>
<title>Text Formatting</title>
<link rel="stylesheet" type="text/css" href="resources/style/style.css" />
</head>
<body>
<section style="width:80%;margin:0 auto;">
<input type="text" placeholder="enter your name" class="nameInput">
</section>
<ul id="colorList">
<li class="pink" data-color="#f06292"></li>
<li class="purple" data-color="#ea80fc"></li>
<li class="blue" data-color="#64b5f6"></li>
<li class="teal" data-color="#4db6ac"></li>
<li class="custom" data-color="#4db6ac"></li>
</ul>
<ul id="fontFormat">
<li class="increase" data-type="fontIncrease">Increase</li>
<li class="decrease" data-type="fontDecrease">Decrease</li>
<li class="italic" data-type="italic">italic</li>
<li class="bold" data-type="bold">bold</li>
<li class="underline" data-type="underline">underline</li>
<li class="clear" data-type="clear">Clear</li>
</ul>
</section>
</section>
<script src="resources/scripts/script.js" type="text/javascript"></script>
</body>
</html>