forked from rotemx/HelloWorld-flex-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (107 loc) · 2.8 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
w <head>
<meta charset="UTF-8">
<title>Title</title>
<style>
label
{
display : block;
padding : 10px;
}
label > label
{
display : inline;
/*}*/
.myCls
{
color: blueviolet;
background: saddlebrown;
}
</style>
</head>
<body>
<div class="myCls">
<ul>
<li>
CapitalCase - classnames
</li>
<li>
camelCase - variable names
</li>
<li>
snake_case - sometimes
</li>
<li>
dash-case - element names / file names
</li>
</ul>
<h2> My Form</h2>
<form action="" method="get">
<label>
Name
<input placeholder="enter your name">
</label>
<label>
Birth Date
<input type="date" value="2020-04-01">
</label>
<label>
Tel
<input type="text" value="054725040">
</label>
<label>
Favorite Color
<input type="color" value="#ff0000">
</label>
<label>
Favorite Band
<select>
<optgroup label="Rock">
<option value="pinkfloyd">Pink Floyd</option>
<option value="acdc">ACDC</option>
<option value="gunsandroses">Guns & Roses</option>
<option value="arcticmonkeys">Arctic Monkeys</option>
<option value="linkinpark">Linkin Park</option>
</optgroup>
<optgroup label="Pop">
<option>Madonna</option>
<option selected>Micheal Jackson</option>
<option>Ke$ha</option>
<option>Robbie Williams</option>
</optgroup>
</select>
</label>
<label>
Programming Languages
<br>
<input type="checkbox" id="js" name="JS" value="Bike">
<label for="js"> JavaScript</label><br>
<input type="checkbox" id="ts" name="ts" value="Car">
<label for="ts">TypeScript</label><br>
<input type="checkbox" id="html" name="html" value="Boat">
<label for="html">HTML</label><br>
<input type="checkbox" id="angular" name="angular" value="Car">
<label for="angular">Angular</label><br>
<input type="checkbox" id="VUE" name="vue" value="Boat">
<label for="vue">VUE</label><br>
</label>
<label>
Preferred Programming Language
<br>
<input type="radio" id="js2" name="fav_language" value="js2">
<label for="js2"> JavaScript</label><br>
<input type="radio" id="ts2" name="fav_language" value="ts">
<label for="ts2">TypeScript</label><br>
<input type="radio" id="html2" name="fav_language" value="html">
<label for="html2">HTML</label><br>
<input type="radio" id="angular2" name="fav_language" value="angular">
<label for="angular2">Angular</label><br>
<input type="radio" id="vue2" name="fav_language" value="vue">
<label for="vue2">VUE</label><br>
</label>
<input type="submit" value="send">
</form>
</div>
</body>
</html>