-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathColours.html
More file actions
74 lines (65 loc) · 2.39 KB
/
Colours.html
File metadata and controls
74 lines (65 loc) · 2.39 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/index.css" media="screen">
<link rel="stylesheet" type="text/css" href="css/signup.css" media="screen">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<title> </title>
</head>
<body>
<div class="header">
<h1>Tom Narainpursat</h1>
<h4>
Modern Front End Developer
</br>
<span class='quote'>"Where ever you go that's where you are"</span>
</h4>
</div>
<div class ='space'>
<div class='nav'>
<h3>Menu</h3>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="Button.html">Button</a></li>
<li><a href="SideBar.html">Profile Card</a></li>
<li><a href="Signup.html">Signup</a></li>
<li><a href="Search.html">Search</a></li>
<li><a href="Questionairre.html">Questionaire</a></li>
<li><a href="Login.html">Login</a></li>
<li><a href="Colours.html">Colour Builder</a></li>
<li><a href="ShippingBilling.html">Shipping & Billing</a></li>
<li><a href="CreditDebitCard.html">Payment Info</a></li>
<li><a href="Calculator.html">Calculator</a></li>
<li><a href="ProductListing.html">Products</a></li>
</ul>
</div>
<div id='content'>
<div class='form_main'>
<h1>Colour Builder</h1>
<!--Signup Form Markup -->
<div class="form">
<form >
<fieldset>
<span class='rlabel'>Red</span>
</br>
<span class='rlabel'>0<input type="range" class="input-field" value="Red" min="0" max="255" step="10"/>255</span>
</br>
<span class='rlabel'>Green</span>
</br>
<span class='rlabel'>0<input type="range" class="input-field" value="Green" min="0" max="255" step="10" />255</span>
</br>
<span class='rlabel'>Blue</span>
</br>
<span class='rlabel'>0<input type="range" class="input-field" value="blue" min="0" max="255" step="10" />255</span>
</br>
<span class='rlabel'>Alpha</span>
</br>
<span class='rlabel'>0<input type="range" class="input-field" value="alpha" min="0" max="1" step="0.01"/>1</span>
<label><span>Colour</span><textarea name="colourOutput" class="textarea-field"></textarea></label>
</fieldset>
</form>
</div>
</div>
</div>
</div>
</body>
</html>