質問編集履歴

2

htaccessについて追記しました。

2020/10/12 07:07

投稿

tomo3nag
tomo3nag

スコア0

test CHANGED
File without changes
test CHANGED
@@ -70,6 +70,18 @@
70
70
 
71
71
 
72
72
 
73
+ ディレクトリに置いてある.htaccessの内容は以下のとおりです。
74
+
75
+ ```text
76
+
77
+ AddType "text/html; charset=UTF-8" html
78
+
79
+ AddType "text/html; charset=UTF-8" txt
80
+
81
+ ```
82
+
83
+
84
+
73
85
 
74
86
 
75
87
  どなたかご教示くださいますよう、どうかお願いいたします。

1

ソースなど追記いたしました。

2020/10/12 07:07

投稿

tomo3nag
tomo3nag

スコア0

test CHANGED
File without changes
test CHANGED
@@ -22,4 +22,54 @@
22
22
 
23
23
 
24
24
 
25
+ ```HTML
26
+
27
+ <div>
28
+
29
+ <iframe src="1.html" width="24%" height="600px" style="margin: 10px;"></iframe>
30
+
31
+ <iframe src="1.txt" width="20%" height="600px" style="margin: 10px;"></iframe>
32
+
33
+ <iframe src="2.html" width="24%" height="600px" style="margin: 10px;"></iframe>
34
+
35
+ <iframe src="2.txt" width="20%" height="600px" style="margin: 10px;"></iframe>
36
+
37
+ </div>
38
+
39
+ ```
40
+
41
+
42
+
43
+ という形でiframeを並べており、
44
+
45
+
46
+
47
+ html/txtファイルは
48
+
49
+
50
+
51
+ ```HTML
52
+
53
+ <div style="display: flex;flex-flow: wrap;justify-content: space-between;align-items: center;margin: 30px auto; text-align:center;">
54
+
55
+ <p style="width:48%;margin:10px 0;"><a href="#" style="display:block;width:100%;padding:5px 10px;border:3px ridge #555;background: hsla(341, 100%, 85%, 0.3);box-sizing:border-box;color:#65fff2;font-size:20px;font-weight:bold;text-decoration:none;text-shadow: 1px 1px 1px #555;">LINK</a></p>
56
+
57
+ <p style="width:48%;margin:10px 0;"><a href="#" style="display:block;width:100%;padding:5px 10px;border:3px ridge #555;background: hsla(341, 100%, 85%, 0.3);box-sizing:border-box;color:#65fff2;font-size:20px;font-weight:bold;text-decoration:none;text-shadow: 1px 1px 1px #555;">LINK</a></p>
58
+
59
+ <p style="width:48%;margin:10px 0;"><a href="#" style="display:block;width:100%;padding:5px 10px;border:3px ridge #555;background: hsla(341, 100%, 85%, 0.3);box-sizing:border-box;color:#65fff2;font-size:20px;font-weight:bold;text-decoration:none;text-shadow: 1px 1px 1px #555;">LINK</a></p>
60
+
61
+ <p style="width:48%;margin:10px 0;"><a href="#" style="display:block;width:100%;padding:5px 10px;border:3px ridge #555;background: hsla(341, 100%, 85%, 0.3);box-sizing:border-box;color:#65fff2;font-size:20px;font-weight:bold;text-decoration:none;text-shadow: 1px 1px 1px #555;">LINK</a></p>
62
+
63
+ </div>
64
+
65
+ ```
66
+
67
+
68
+
69
+ のかたちで同内容(拡張子のみ変更)です。
70
+
71
+
72
+
73
+
74
+
25
75
  どなたかご教示くださいますよう、どうかお願いいたします。