-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.29 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Sketch.io</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="main-content">
<div class="options-container">
<section class="options-button">
<button class="custom button-color"><input class="color-picker" type="color" value="#102542">Custom</button>
<button id="selected" class="black button-color">Black</button>
<button class="random button-color">Random</button>
<button class="eraser button-color">Eraser</button>
</section>
<section class="options-toggles">
<button class="toggle-borders">Borders</button>
<button class="reset">Reset</button>
<button class="pattern">Pattern</button>
</section>
</div>
<div class="input">
<section class="slider">
<input id="sliderInput" type="range" min="1" max="30" value="10">
<p class="sliderValue"></p>
</section>
<section class="container" id="not-border"></section>
</div>
</div>
<script src="javascript/index.js"></script>
</body>
</html>