質問編集履歴
1
コード全体を書きました
    
        title	
    CHANGED
    
    | 
         
            File without changes
         
     | 
    
        body	
    CHANGED
    
    | 
         @@ -7,13 +7,82 @@ 
     | 
|
| 
       7 
7 
     | 
    
         | 
| 
       8 
8 
     | 
    
         
             
            ### 該当のソースコード
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
     | 
    
         
            -
            html
         
     | 
| 
       11 
     | 
    
         
            -
             
     | 
| 
      
 10 
     | 
    
         
            +
            <!DOCTYPE html>
         
     | 
| 
       12 
11 
     | 
    
         | 
| 
      
 12 
     | 
    
         
            +
            <html lang="ja">
         
     | 
| 
      
 13 
     | 
    
         
            +
              <head>
         
     | 
| 
      
 14 
     | 
    
         
            +
                <meta charset="utf-8">
         
     | 
| 
      
 15 
     | 
    
         
            +
                <title>Airbnbでお家、アパート、お部屋をシェアしよう</title>
         
     | 
| 
      
 16 
     | 
    
         
            +
                <link rel="stylesheet" type="text/css" href="style.css">
         
     | 
| 
      
 17 
     | 
    
         
            +
                <link rel="shortcut icon" type="image/png" href="../pictures/icon.png">
         
     | 
| 
      
 18 
     | 
    
         
            +
                <link href="https://use.fontawesome.com/releases/v5.6.1/css/all.css" rel="stylesheet">
         
     | 
| 
      
 19 
     | 
    
         
            +
                <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
         
     | 
| 
      
 20 
     | 
    
         
            +
              </head>
         
     | 
| 
      
 21 
     | 
    
         
            +
              <body>
         
     | 
| 
      
 22 
     | 
    
         
            +
                <div class="header row">
         
     | 
| 
      
 23 
     | 
    
         
            +
                <div class="col-sm-12">
         
     | 
| 
      
 24 
     | 
    
         
            +
                  <ul class="nav">
         
     | 
| 
      
 25 
     | 
    
         
            +
                    <li class="nav-item">
         
     | 
| 
      
 26 
     | 
    
         
            +
                      <a class="nav-link active" href="#">Active</a>
         
     | 
| 
      
 27 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 28 
     | 
    
         
            +
                    <li class="nav-item">
         
     | 
| 
      
 29 
     | 
    
         
            +
                      <a class="nav-link" href="#">Link</a>
         
     | 
| 
      
 30 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 31 
     | 
    
         
            +
                    <li class="nav-item">
         
     | 
| 
      
 32 
     | 
    
         
            +
                      <a class="nav-link" href="#">Link</a>
         
     | 
| 
      
 33 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 34 
     | 
    
         
            +
                    <li class="nav-item">
         
     | 
| 
      
 35 
     | 
    
         
            +
                      <a class="nav-link disabled" href="#" tabindex="-1" aria-disabled="true">Disabled</a>
         
     | 
| 
      
 36 
     | 
    
         
            +
                    </li>
         
     | 
| 
      
 37 
     | 
    
         
            +
                  </ul>
         
     | 
| 
      
 38 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 39 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 40 
     | 
    
         
            +
                
         
     | 
| 
      
 41 
     | 
    
         
            +
                <div class="content-first row">
         
     | 
| 
      
 42 
     | 
    
         
            +
                  
         
     | 
| 
      
 43 
     | 
    
         
            +
                   <div class="col-sm-8">
         
     | 
| 
      
 44 
     | 
    
         
            +
                   </div>
         
     | 
| 
      
 45 
     | 
    
         
            +
                  
         
     | 
| 
      
 46 
     | 
    
         
            +
                   <div class="col-sm-3">
         
     | 
| 
      
 47 
     | 
    
         
            +
                   <form>
         
     | 
| 
      
 48 
     | 
    
         
            +
                    <div class="form-group">
         
     | 
| 
      
 49 
     | 
    
         
            +
                      <label for="exampleInputEmail1">Email address</label>
         
     | 
| 
      
 50 
     | 
    
         
            +
                      <input type="email" class="form-control" id="exampleInputEmail1" aria-describedby="emailHelp" placeholder="Enter email">
         
     | 
| 
      
 51 
     | 
    
         
            +
                      <small id="emailHelp" class="form-text text-muted">We'll never share your email with anyone else.</small>
         
     | 
| 
      
 52 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 53 
     | 
    
         
            +
                    <div class="form-group">
         
     | 
| 
      
 54 
     | 
    
         
            +
                      <label for="exampleInputPassword1">Password</label>
         
     | 
| 
      
 55 
     | 
    
         
            +
                      <input type="password" class="form-control" id="exampleInputPassword1" placeholder="Password">
         
     | 
| 
      
 56 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 57 
     | 
    
         
            +
                    <div class="form-group form-check">
         
     | 
| 
      
 58 
     | 
    
         
            +
                      <input type="checkbox" class="form-check-input" id="exampleCheck1">
         
     | 
| 
      
 59 
     | 
    
         
            +
                      <label class="form-check-label" for="exampleCheck1">Check me out</label>
         
     | 
| 
      
 60 
     | 
    
         
            +
                    </div>
         
     | 
| 
      
 61 
     | 
    
         
            +
                    <button type="submit" class="btn btn-primary">Submit</button>
         
     | 
| 
      
 62 
     | 
    
         
            +
                  </form>
         
     | 
| 
      
 63 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 64 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 65 
     | 
    
         
            +
                
         
     | 
| 
      
 66 
     | 
    
         
            +
                <div class="row content-second">
         
     | 
| 
      
 67 
     | 
    
         
            +
                  <div class="col-sm-6">
         
     | 
| 
      
 68 
     | 
    
         
            +
                    <h1>Airbnbでホストするこれだけの理由</h1>
         
     | 
| 
      
 69 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 70 
     | 
    
         
            +
                
         
     | 
| 
      
 71 
     | 
    
         
            +
                  <div class="col-sm-6">
         
     | 
| 
      
 72 
     | 
    
         
            +
                    <h1>困ったときも安心</h1>
         
     | 
| 
      
 73 
     | 
    
         
            +
                  </div>
         
     | 
| 
      
 74 
     | 
    
         
            +
                </div>
         
     | 
| 
      
 75 
     | 
    
         
            +
                
         
     | 
| 
      
 76 
     | 
    
         
            +
              </body>
         
     | 
| 
      
 77 
     | 
    
         
            +
            </html>
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
       13 
79 
     | 
    
         
             
            css
         
     | 
| 
      
 80 
     | 
    
         
            +
            .header  {
         
     | 
| 
      
 81 
     | 
    
         
            +
            height:80px;
         
     | 
| 
      
 82 
     | 
    
         
            +
            }
         
     | 
| 
       14 
83 
     | 
    
         | 
| 
       15 
84 
     | 
    
         
             
            .content-first {
         
     | 
| 
       16 
     | 
    
         
            -
              background-image: url( 
     | 
| 
      
 85 
     | 
    
         
            +
              background-image: url(../pictures/first.png);
         
     | 
| 
       17 
86 
     | 
    
         
             
              background-size:cover;
         
     | 
| 
       18 
87 
     | 
    
         
             
            }
         
     | 
| 
       19 
88 
     | 
    
         |