-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (45 loc) · 1.57 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
<!DOCTYPE html>
<head>
<link rel="stylesheet" href="css/hd-style.css">
</head>
<body>
<br/>
<div class="hd-form-div" >
<h1>Google Style Form</h1>
<p>Google's new style form elements</p>
<div class="hd-form-div-in">
<div class="hd-input-text-div" >
<input class="hd-input-text" type="text" />
<div class="hd-input-text-placeholder">Name</div>
</div>
<br>
<div class="hd-input-text-div">
<input class="hd-input-text" type="number" />
<div class="hd-input-text-placeholder">Number</div>
</div>
<br/>
<div class="hd-select">
<select >
<option value="0">Select</option>
<option value="1">Software</option>
<option value="2">Css</option>
<option value="3">Js</option>
<option value="4">Google</option>
</select>
</div>
<br>
<div class="hd-input-textarea-div">
<textarea class="hd-input-textarea" ></textarea>
<div class="hd-input-textarea-placeholder">Address</div>
</div>
<br>
<div class="hd-button" style="float:right;">
<button class="hd-button-colorless" >İptal</button>
<button class="hd-button-colored">Kaydet</button>
</div>
<br>
</div>
</div>
<script src="js/hd-script.js"></script>
</body>
</html>