forked from mynameisraj/css-elements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (48 loc) · 1.18 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>UI Kit</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Raj Ramamurthy">
<meta name="description" content="CSS3 interface elements.">
<script src="js/script.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="wrap">
<div id="left">
<ul class="list">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
<li>Item 4</li>
</ul>
</div>
<div id="right">
<select>
<option>Menu</option>
<option>Item</option>
</select>
<input type="radio">
<input type="radio" disabled>
<input type="radio" checked>
<span id="checkbox">
<input type="checkbox">
<input type="checkbox" checked>
</span>
<input type="search" placeholder="Search" results="0">
<input type="text" placeholder="Text">
<input type="range" min="0" max="10" step="0.1" value="3">
</div>
<div class="clear"></div>
<div>
<div class="toolbar">
<input type="search">
<button id="button">Button</button>
<div class="clear"></div>
</div>
</div>
</div>
</body>
</html>