Advertisement
yy981

url.html

Sep 6th, 2023
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.23 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5.   /* スタイル付け */
  6.   body {
  7.     font-family: Arial, sans-serif;
  8.     background-color: #f0f0f0;
  9.   }
  10.   #container {
  11.     width: 1200px;
  12.     margin: 0 auto;
  13.     background-color: #fff;
  14.     padding: 10px;
  15.     border: 1px solid #ccc;
  16.   }
  17.   #url-input {
  18.     width: 100%;
  19.     padding: 5px;
  20.     margin-bottom: 10px;
  21.     border: 1px solid #ccc;
  22.   }
  23.   #url-input:focus {
  24.     outline: none;
  25.     border-color: #007bff;
  26.   }
  27.   #go-button {
  28.     width: 100%;
  29.     padding: 10px;
  30.     background-color: #007bff;
  31.     color: #fff;
  32.     border: none;
  33.     cursor: pointer;
  34.   }
  35.   #site-display {
  36.     width: 100%;
  37.     height: 550px;
  38.     border: 1px solid #ccc;
  39.   }
  40. </style>
  41. </head>
  42. <body>
  43.   <div id="container">
  44.     <input type="text" id="url-input" placeholder="URLを入力">
  45.     <button id="go-button">GO</button>
  46.     <iframe id="site-display"></iframe>
  47.   </div>
  48.  
  49.   <script>
  50.     // JavaScriptを追加してGOボタンの動作を設定
  51.     document.getElementById("go-button").addEventListener("click", function() {
  52.       var urlInput = document.getElementById("url-input").value;
  53.       document.getElementById("site-display").src = urlInput;
  54.     });
  55.   </script>
  56. </body>
  57. </html>
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement