質問編集履歴
1
追記です。ご指摘がありましたのでわかりやすくコードを入れました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -15,3 +15,109 @@
|
|
15
15
|
タグ、要素、属性、class属性、属性値、を一つ一つ検索していくつもサイトを転々し調べてると普通に半日くらい経ってしまいます。
|
16
16
|
|
17
17
|
皆さんはどうやって調べてますかおしえてください!!
|
18
|
+
|
19
|
+
```HTML
|
20
|
+
|
21
|
+
<!--文字化け防止-->
|
22
|
+
|
23
|
+
<meta charset="utf-8">
|
24
|
+
|
25
|
+
<form>
|
26
|
+
|
27
|
+
<h1>スキルアンケート</h1>
|
28
|
+
|
29
|
+
<div class="form-group">
|
30
|
+
|
31
|
+
<label>氏名</label>
|
32
|
+
|
33
|
+
<div>
|
34
|
+
|
35
|
+
<input type="text">
|
36
|
+
|
37
|
+
</div>
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
|
42
|
+
|
43
|
+
<div class="form-group">
|
44
|
+
|
45
|
+
<label>経験年数</label>
|
46
|
+
|
47
|
+
<div class="radio">
|
48
|
+
|
49
|
+
<label><input type="radio" name="radio">1年未満</label>
|
50
|
+
|
51
|
+
<label><input type="radio" name="radio">1〜3年</label>
|
52
|
+
|
53
|
+
<label><input type="radio" name="radio">4年以上</label>
|
54
|
+
|
55
|
+
</div>
|
56
|
+
|
57
|
+
</div>
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
<div class="form-group">
|
62
|
+
|
63
|
+
<label class="control-label">言語</label> ←ここの"control-label"です
|
64
|
+
|
65
|
+
<div class="checkbox">
|
66
|
+
|
67
|
+
<label><input type="checkbox" name="checkbox">HTML&CSS</label>
|
68
|
+
|
69
|
+
<label><input type="checkbox" name="checkbox">JavaScript</label>
|
70
|
+
|
71
|
+
<label><input type="checkbox" name="checkbox">Ruby</label>
|
72
|
+
|
73
|
+
<label><input type="checkbox" name="checkbox">PHP</label>
|
74
|
+
|
75
|
+
<label><input type="checkbox" name="checkbox">Python</label>
|
76
|
+
|
77
|
+
<label><input type="checkbox" name="checkbox">C#</label>
|
78
|
+
|
79
|
+
</div>
|
80
|
+
|
81
|
+
</div>
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
<div class="form-group">
|
86
|
+
|
87
|
+
<label class="control-label">希望勤務地</label>
|
88
|
+
|
89
|
+
<div>
|
90
|
+
|
91
|
+
<select class="form-control">
|
92
|
+
|
93
|
+
<option>東京</option>
|
94
|
+
|
95
|
+
<option>名古屋</option>
|
96
|
+
|
97
|
+
<option>大阪</option>
|
98
|
+
|
99
|
+
<option>福岡</option>
|
100
|
+
|
101
|
+
<option>海外</option>
|
102
|
+
|
103
|
+
</select>
|
104
|
+
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</div>
|
108
|
+
|
109
|
+
|
110
|
+
|
111
|
+
<div class="form-group">
|
112
|
+
|
113
|
+
<div>
|
114
|
+
|
115
|
+
<button>送信</button>
|
116
|
+
|
117
|
+
</div>
|
118
|
+
|
119
|
+
</div>
|
120
|
+
|
121
|
+
</form>
|
122
|
+
|
123
|
+
```
|