前提・実現したいこと
表題の通り、エラーが出ます。
daenkeiであれば、パスも何回も確認しているのに見つからないという反応になることに理解ができず
質問しました
発生している問題・エラーメッセージ
試したこと
Failed to load resource: the server responded with a status of 404 (Not Found)
を使い、検索しましたが解決できませんでした
該当のソースコード
HTML
1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <meta name="robots" content="noindex"> 8 <title>ユアコーディング</title> 9 <!-- Google Fonts --> 10 <link rel="preconnect" href="https://fonts.googleapis.com"> 11 <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> 12 <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100&display=swap" rel="stylesheet"> 13 <!----> 14 <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css"/> 15 <link rel="stylesheet" href="./CSS/destyle.css"> 16 <link rel="stylesheet" href="CSS/slick.css"> 17 <link rel="stylesheet" href="CSS/slick-theme.css"> 18 <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> 19 <link rel="stylesheet" href="./CSS/style.css"> 20</head> 21<body> 22 <section class="fv"> 23 <div class="inner fv-fx"> 24 <div class="fv-img"> 25 <img src="./image/manager.png" alt="" class="manager"> 26 </div><!-- /.fv-img --> 27 <div class="fv-txt"> 28 <div class="fv-ttl">コーディングの手間を <br> 最小に、デザインに注力 <br> する助けに</div><!-- /.fv-ttl --> 29 <p>ユアコーディングはコーディングに <br> 特化したフリーランス <br> デザインに注力されたい方の <br> 助けになります</p> 30 31 <div class="cmn-link fv-link"> 32 <a href="#contact-link">お問い合わせ</a> 33 </div><!-- /.inner --> 34 </section><!-- /.fv --> 35 <script type="text/javascript" src="js/jquery-3.6.0.min.js"></script> 36 <script type="text/javascript" src="js/slick.min.js"></script> 37 <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> 38 <script type="text/javascript" src="js/script.js"></script> 39</body> 40</html>
CSS
1.fv { 2 width: 100%; 3 height: 674px; 4 position: relative; 5 background-image: url(../../image/daenkei.png); 6 background-position: top -150px right -220px; 7 background-repeat: no-repeat; 8 background-size: auto; 9} 10 11.fv .fv-img { 12 width: 40%; 13 position: absolute; 14 vertical-align: bottom; 15 top: 150px; 16 left: 800px; 17} 18 19@media screen and (max-width: 769px) { 20 .fv .fv-img { 21 width: 50%; 22 position: absolute; 23 top: 70%; 24 left: 50%; 25 } 26} 27 28@media screen and (max-width: 576px) { 29 .fv .fv-img { 30 width: 40%; 31 position: absolute; 32 top: 80%; 33 left: 40%; 34 vertical-align: bottom; 35 } 36} 37 38@media print, screen and (max-width: 1024px) { 39 .fv .fv-img .manger { 40 width: 100%; 41 } 42} 43 44.fv .fv-txt { 45 margin-left: 192px; 46} 47 48.fv .fv-txt .fv-ttl { 49 font-size: 3.2rem; 50 font-weight: bold; 51 margin-top: 160px; 52 margin-left: 190px; 53 font-weight: bold; 54 position: absolute; 55 top: 60px; 56 left: 10px; 57} 58 59@media screen and (max-width: 576px) { 60 .fv .fv-txt .fv-ttl { 61 font-size: 2.5rem; 62 } 63} 64 65@media screen and (max-width: 1200px) { 66 .fv .fv-txt .fv-ttl { 67 top: 60px; 68 left: -40px; 69 } 70} 71 72.fv .fv-txt > p { 73 display: block; 74 margin-top: 44px; 75 margin-left: 190px; 76 font-weight: bold; 77 position: absolute; 78 top: 350px; 79 left: 10px; 80 line-height: 1.6875; 81} 82 83@media screen and (max-width: 1200px) { 84 .fv .fv-txt > p { 85 padding-top: -30px; 86 left: -40px; 87 } 88} 89 90.fv .fv-link { 91 position: absolute; 92 top: 500px; 93 left: 10px; 94 margin-left: 192px; 95} 96 97.fv .fv-link > a { 98 display: block; 99 text-align: center; 100 padding: 8px; 101 color: #FFF; 102}
js
1 $(function(){ 2 $('#slider').slick({ 3 infinite: true, 4 slidesToShow: 3, 5 slidesToScroll: 3, 6 autoplay : true, 7 Speed: 3000, 8 autoplaySpeed: 5000, 9 arrows: false, 10 centerPadding: '100px', 11 centerMode: true, 12 responsive: [ 13 { 14 breakpoint: 753, 15 settings: { 16 slidesToShow: 1, 17 slidesToScroll: 1, 18 infinite: true, 19 dots: true, 20 centerPadding: 0, 21 centerMode: true, 22 23 } 24 }, 25 26 ] 27 }); 28});
回答2件
あなたの回答
tips
プレビュー