質問編集履歴
1
htmlソースの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -48,7 +48,7 @@
|
|
48
48
|
|
49
49
|
|
50
50
|
|
51
|
-
```
|
51
|
+
```.htaccess
|
52
52
|
|
53
53
|
Action myphp-script /php.cgi
|
54
54
|
|
@@ -73,3 +73,99 @@
|
|
73
73
|
</IfModule>
|
74
74
|
|
75
75
|
```
|
76
|
+
|
77
|
+
```html
|
78
|
+
|
79
|
+
<!DOCTYPE html>
|
80
|
+
|
81
|
+
<html lang="ja">
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
<head>
|
86
|
+
|
87
|
+
<meta charset="UTF-8">
|
88
|
+
|
89
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
90
|
+
|
91
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
92
|
+
|
93
|
+
<title>メンテナンス中です</title>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
<style>
|
98
|
+
|
99
|
+
body,
|
100
|
+
|
101
|
+
svg,
|
102
|
+
|
103
|
+
div,
|
104
|
+
|
105
|
+
h1,
|
106
|
+
|
107
|
+
h2,
|
108
|
+
|
109
|
+
p {
|
110
|
+
|
111
|
+
margin: 0;
|
112
|
+
|
113
|
+
padding: 0;
|
114
|
+
|
115
|
+
}
|
116
|
+
|
117
|
+
|
118
|
+
|
119
|
+
body {
|
120
|
+
|
121
|
+
background-color: #fff;
|
122
|
+
|
123
|
+
font-family: Meiryo, sans-serif;
|
124
|
+
|
125
|
+
display: flex;
|
126
|
+
|
127
|
+
justify-content: center;
|
128
|
+
|
129
|
+
align-items: center;
|
130
|
+
|
131
|
+
}
|
132
|
+
|
133
|
+
</style>
|
134
|
+
|
135
|
+
</head>
|
136
|
+
|
137
|
+
|
138
|
+
|
139
|
+
<body>
|
140
|
+
|
141
|
+
<div class="container">
|
142
|
+
|
143
|
+
<svg id="基本データ" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="200"
|
144
|
+
|
145
|
+
height="90.471" viewBox="0 0 200 90.471">
|
146
|
+
|
147
|
+
<defs>
|
148
|
+
|
149
|
+
<style></style>
|
150
|
+
|
151
|
+
<linearGradient ・・・
|
152
|
+
|
153
|
+
</svg>
|
154
|
+
|
155
|
+
<h1>ただいまメンテナンス中です</h1>
|
156
|
+
|
157
|
+
<p>Webサイトリニューアル作業のため、サービスを停止しています。<br>
|
158
|
+
|
159
|
+
ご利用の皆様にはご迷惑をおかけしますが、メンテナンス終了まで今しばらくお待ちください。</p>
|
160
|
+
|
161
|
+
<h2>メンテナンス期間</h2>
|
162
|
+
|
163
|
+
<p>2021年3月1日(月) 9:00〜12:00(予定)</p>
|
164
|
+
|
165
|
+
</div>
|
166
|
+
|
167
|
+
</body>
|
168
|
+
|
169
|
+
</html>
|
170
|
+
|
171
|
+
```
|