Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <style>
- /* スタイル付け */
- body {
- font-family: Arial, sans-serif;
- background-color: #f0f0f0;
- }
- #container {
- width: 1200px;
- margin: 0 auto;
- background-color: #fff;
- padding: 10px;
- border: 1px solid #ccc;
- }
- #url-input {
- width: 100%;
- padding: 5px;
- margin-bottom: 10px;
- border: 1px solid #ccc;
- }
- #url-input:focus {
- outline: none;
- border-color: #007bff;
- }
- #go-button {
- width: 100%;
- padding: 10px;
- background-color: #007bff;
- color: #fff;
- border: none;
- cursor: pointer;
- }
- #site-display {
- width: 100%;
- height: 550px;
- border: 1px solid #ccc;
- }
- </style>
- </head>
- <body>
- <div id="container">
- <input type="text" id="url-input" placeholder="URLを入力">
- <button id="go-button">GO</button>
- <iframe id="site-display"></iframe>
- </div>
- <script>
- // JavaScriptを追加してGOボタンの動作を設定
- document.getElementById("go-button").addEventListener("click", function() {
- var urlInput = document.getElementById("url-input").value;
- document.getElementById("site-display").src = urlInput;
- });
- </script>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement