質問編集履歴
2
画像の挿入
    
        title	
    CHANGED
    
    | 
            File without changes
         | 
    
        body	
    CHANGED
    
    | @@ -1,5 +1,6 @@ | |
| 1 1 | 
             
            ### 前提・実現したいこと
         | 
| 2 | 
            -
             | 
| 2 | 
            +
            jspファイルを表示させたいです。
         | 
| 3 | 
            +
            
         | 
| 3 4 |  | 
| 4 5 | 
             
            ### 発生している問題・エラーメッセージ
         | 
| 5 6 | 
             
            
         | 
1
誤字
    
        title	
    CHANGED
    
    | 
            File without changes
         | 
    
        body	
    CHANGED
    
    | @@ -80,8 +80,31 @@ | |
| 80 80 | 
             
            </html>
         | 
| 81 81 |  | 
| 82 82 | 
             
            ```
         | 
| 83 | 
            +
            ```footer
         | 
| 84 | 
            +
            <%@page import="java.text.SimpleDateFormat"%>
         | 
| 85 | 
            +
            <%@page import="java.util.Date"%>
         | 
| 86 | 
            +
            <%@ page language="java" contentType="text/html; charset=UTF-8"
         | 
| 87 | 
            +
                pageEncoding="UTF-8"%>
         | 
| 88 | 
            +
            <!DOCTYPE html>
         | 
| 89 | 
            +
            <html>
         | 
| 90 | 
            +
            <head>
         | 
| 91 | 
            +
            <meta charset="UTF-8">
         | 
| 92 | 
            +
            <title>Insert title here</title>
         | 
| 93 | 
            +
            <link rel="stylesheet" href="./css/style.css">
         | 
| 94 | 
            +
            </head>
         | 
| 95 | 
            +
            <body>
         | 
| 96 | 
            +
            	<!-- -フッターを作成 -->
         | 
| 97 | 
            +
            	<div class= "fooer">
         | 
| 98 | 
            +
            		<div class="hoge">hoge.Inc</div>
         | 
| 99 | 
            +
            	</div>
         | 
| 83 100 |  | 
| 101 | 
            +
             | 
| 102 | 
            +
            </body>
         | 
| 103 | 
            +
            </html>
         | 
| 104 | 
            +
             | 
| 84 105 | 
             
            ```
         | 
| 106 | 
            +
             | 
| 107 | 
            +
            ```css
         | 
| 85 108 | 
             
            @charset "UTF-8";
         | 
| 86 109 |  | 
| 87 110 | 
             
            .header {
         | 
