forked from premasagar/cleanslate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
40 lines (39 loc) · 1.41 KB
/
test.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
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>test buttons</title>
<link rel="stylesheet" href="cleanslate.css">
<style>
div.cleanslate {
background: lightgrey;
}
</style>
</head>
<body>
<button>test</button>
<input type="submit">
<select name="test" id="value">
<option>some value</option>
<option>some value</option>
<option>some value</option>
<option>some value</option>
</select>
<input type="radio">
<input type="checkbox">
<textarea name="" id="" cols="30" rows="10">This is a test to see if everything is working as it shoud, thankfully it is... So we can carry on with our testing and see how everything is going to pan out with the day. Best, Mat.</textarea>
<div class="cleanslate">
<button>test</button>
<input type="submit">
<select name="test" id="value">
<option>some value</option>
<option>some value</option>
<option>some value</option>
<option>some value</option>
</select>
<input type="radio">
<input type="checkbox">
<textarea name="" id="" cols="30" rows="10">This is a test to see if everything is working as it shoud, thankfully it is... So we can carry on with our testing and see how everything is going to pan out with the day. Best, Mat.</textarea>
</div>
</body>
</html>