質問編集履歴

1

html追加

2017/12/20 09:25

投稿

Anfanger
Anfanger

スコア24

test CHANGED
File without changes
test CHANGED
@@ -107,3 +107,63 @@
107
107
  }
108
108
 
109
109
  ```
110
+
111
+ ```ここに言語を入力
112
+
113
+ <!DOCTYPE html>
114
+
115
+ <html>
116
+
117
+ <head>
118
+
119
+ <meta charset="UTF-8">
120
+
121
+ <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
122
+
123
+ <meta name="format-detection" content="telephone=no">
124
+
125
+ <title>jQuery</title>
126
+
127
+ <link rel="stylesheet" href="../../common/css/reset.css">
128
+
129
+ <link rel="stylesheet" href="../../common/css/base.css">
130
+
131
+ <link rel="stylesheet" href="./css/style.css">
132
+
133
+ </head>
134
+
135
+ <body>
136
+
137
+ <div class="wrap">
138
+
139
+ <div class="container">
140
+
141
+ <div class="header">
142
+
143
+ <p class="header__title">Search Books!</p>
144
+
145
+ </div>
146
+
147
+ <div class="search">
148
+
149
+ <div class="search__text">
150
+
151
+ <input type="text" id="js-search-word" class="search__text__input" placeholder="検索する">
152
+
153
+ </div>
154
+
155
+ <button id="js-search-button" class="search__btn">検索する</button>
156
+
157
+ </div>
158
+
159
+ <ul class="lists"></ul>
160
+
161
+ </div>
162
+
163
+ </div>
164
+
165
+ <script src="../../common/js/jquery.js"></script>
166
+
167
+ <script>
168
+
169
+ ```