問題点
・<img src="">で画像が表示されない(画像参照)
※文字の表示位置がおかしいですが、それについては画像が表示されない問題が解決した後に対処するため、気にしないでください。
発生している問題
・Google Chromeの検証で確認したところ、「Failed to load resource: the server responded with a status of 404 (Not Found)」とエラーメッセージが表示されております。
ソースコード
使用言語 : HTML/CSS (Bootstrap5) , PHP
■index.php
<!doctype html> <html lang="ja"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- bootstrap --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-giJF6kkoqNQ00vy+HMDP7azOuL0xtbfIcaT9wjKHr8RbDVddVHyTfAAsrekwKmP1" crossorigin="anonymous"> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.4.0/font/bootstrap-icons.css"> <!-- font --> <link href="https://fonts.googleapis.com/css?family=Teko" rel="stylesheet"> <title>Portfolio Site</title> <link rel="stylesheet" href="css/styles.css"> </head> <body> <header> <nav class="navbar navbar-expand-lg navbar-light bg-secondary text-white-50 fw-bold"> <div class="container-fluid"> <a class="navbar-brand" href="#">Portfolio Site</a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent"> <ul class="navbar-nav navbar-right"> <li class="nav-item"> <a class="nav-link" href="#">Home</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Profile</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Skill</a> </li> <li class="nav-item"> <a class="nav-link" href="#">Portfolio</a> </li> </ul> </div> </div> </nav> </header> <section class="toc"> <div class="iconpos border-bottom border-dark border-2"> <svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="currentColor" class="bi bi-person-fill" viewBox="0 0 16 12"> <path d="M3 14s-1 0-1-1 1-4 6-4 6 3 6 4-1 1-1 1H3zm5-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6z" /> </svg> <h1 class="">Profile</h1> </div> </section> <br></br> <div class="text"> <div class ="flex"> <img src="../images/profiler.png" class="imgsize"> <p class="texter"> 日本 太郎(にほん たろう)<br/> 1940年 9月 20日 80歳 </p> </div> </div> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta1/dist/js/bootstrap.bundle.min.js" integrity="sha384-ygbV9kiqUc6oa4msXn9868pTtWMgiQaeYH7/t7LECLbyPA2x65Kgf80OJFdroafW" crossorigin="anonymous"></script> </body> <footer> <p>© nihon portfolio.</p> </footer> </html>
構成
試したこと
・別の行番号に<img src="">を差し込む
→同様に画像は表示されず
・別の画像ファイルに差し替え
→同上
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。