-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 1 KB
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 1 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="css/index.css" />
<link rel="shortcut icon" type="image/png" href="images/pageIcon.png"/>
<title>Picture Editor</title>
</head>
<body>
<h2>
<span class="h1">Picture Editor</span>
</h2>
<div class="controls">
<!-- spacing -->
<label for="spacing">Border Spacing : </label>
<input type="range" name="spacing" min="10" max="200" value="10" data-sizing="px">
<!-- blur -->
<label for="blur">Blur : </label>
<input type="range" name="blur" min="0" max="25" value="0" data-sizing="px">
<!-- border color -->
<label for="base">Border Color : </label>
<input type="color" name="base" value="#ffffff">
</div>
<img src="images/background.jpg">
</body>
<script src="Script/index.js"></script>
</html>