-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (42 loc) · 1.57 KB
/
index.html
File metadata and controls
42 lines (42 loc) · 1.57 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
<!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="main.css">
<link rel="stylesheet" href="style.css.map">
</head>
<body>
<div class="container">
<div class="settings">
<h1>Color</h1>
<input type="color" class="colorText">
<h1>Background</h1>
<input type="color" class="textBG">
<h1>FontSize</h1>
<input type="range" class="FontSizeText">
<h1>Border</h1>
<input type="checkbox" autocomplete="off" class="borderCheck">
<input type="text" autocomplete="off" class="borderSize">
<input type="color" class="colorBorder" autocomplete="off">
<h1>FontFamily</h1>
<select name="FontFamily" id="" autocomplete="off">
<option value="RubikFont">Rubik</option>
<option value="ScriptFont">Dancing Script</option>
<option value="PlexMonoFont">IBM Plex Mono</option>
</select>
</div>
<div class="code">
<textarea name="" id="codeText" cols="60" rows="10" autocomplete="off"></textarea>
</div>
<div class="result">
<p class="bgEnable">Background</p>
<input type="checkbox" class="changeBG" autocomplete="off">
<h1 class="resultText">result</h1>
</div>
</div>
<script src="script.js"></script>
</body>
</html>
<!-- It's was very difficult journey... -->