質問編集履歴
1
失礼いたしました。htmlソースコードを全て掲載しました。よろしくお願い致します。
title
CHANGED
File without changes
|
body
CHANGED
@@ -2,10 +2,27 @@
|
|
2
2
|
|
3
3
|
・現在のコード
|
4
4
|
```HTML
|
5
|
+
<!DOCTYPE html>
|
6
|
+
<html>
|
7
|
+
<head>
|
8
|
+
<meta charset="utf-8">
|
9
|
+
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
10
|
+
<title>無題ドキュメント</title>
|
11
|
+
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
|
12
|
+
<link rel="stylesheet" href="style.css" />
|
13
|
+
<script src="http://code.jquery.com/jquery-1.9.0.js"></script>
|
14
|
+
<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
|
15
|
+
</head>
|
16
|
+
|
17
|
+
<body>
|
18
|
+
|
5
19
|
<div data-role="header" data-theme="b" data-position="fixed">
|
6
20
|
<a href="" data-rel="back">戻る</a>
|
7
|
-
<h1><img src="
|
21
|
+
<h1><img src="main_logo.png"></h1>
|
8
22
|
</div>
|
23
|
+
|
24
|
+
</body>
|
25
|
+
</html>
|
9
26
|
```
|
10
27
|
```CSS
|
11
28
|
.ui-header {height:10%;}
|