
안녕하세요. 1주차 과제 하던 도중에 질문 드립니다...!!
선생님이 상어 url 복사해 주신것 사용하다가 다른 url으로 붙여넣었더니 이미지를 가져오지를 않습니다.
글씨 크기만 크게 하려면 어떻게 해야하나요??
작성한 코드 및 에러 메세지
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<title>1주차 homework~~~</title>
<link rel="preconnect" href="https://fonts.googleapis.com"><link rel="preconnect" href="https://fonts.gstatic.com" crossorigin><link href="https://fonts.googleapis.com/css2?family=Dongle&family=Hi+Melody&display=swap" rel="stylesheet">
<style>
/** {*/
/* font-family: 'Dongle', sans-serif;*/
/*}*/
.mytitle {
height: 250px;
width: 100%;
background-image: url("https://postfiles.pstatic.net/MjAyMjEyMjFfMTI3/MDAxNjcxNjI3NjE0MDA0.EbgB4zjamAolsLCRI4KxSGNBaEMix3zNAK4nU6_XOvwg.y8hiJczSVObM2FC0hnVIwQqaXdNsgVvRsvIwk2sb8-kg.JPEG.niceguy00/Seul_%ED%99%98%ED%98%BC2_%EA%B3%A0%EC%9C%A4%EC%A0%9503.jpg?type=w773");
background-position: center;
background-size: cover;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Dongle', sans-serif;
font-size: 100px;
}
.mypost {
box-shadow: 0px 0px 6px 0px gray;
max-width: 450px;
width: 95%;
margin: 20px auto 0px auto;
padding: 20px;
font-family: 'Hi Melody', cursive;
}
.mypost > button {
margin-top: 10px;
}
.my_under_post {
margin: auto;
max-width: 450px;
width: 95%;
height: 100px;
font-family: 'Hi Melody', cursive;
}
.my_under_post > .card {
margin-top: 10px;
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="mytitle">
<h1>고윤정 이쁘다~~!!!!</h1>
</div>
<div class="mypost">
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="name@example.com">
<label for="floatingInput">닉네임</label>
</div>
<div class="form-floating">
<textarea class="form-control" placeholder="Leave a comment here" id="floatingTextarea"></textarea>
<label for="floatingTextarea">응원댓글</label>
</div>
<button type="button" class="btn btn-dark">응원 남기기</button>
</div>
<div class="my_under_post">
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>이번 환혼2 레전드!</p>
<footer class="blockquote-footer">권순재
</footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>스위트홈도 봐야겠다!</p>
<footer class="blockquote-footer">권순재
</footer>
</blockquote>
</div>
</div>
<div class="card">
<div class="card-body">
<blockquote class="blockquote mb-0">
<p>앞으로도 많은 기대</p>
<footer class="blockquote-footer">권순재
</footer>
</blockquote>
</div>
</div>
</div>
</body>
</html>
<!--질문사항-->
<!--1. 이미지 파일 링크 걸면 사진 안나옴-->
<!--2. 텍스트 크기만 크고 작게 설정-->
