
* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.
* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.
바탕화면에 꽉 차야는데
작게 나오네요
<!DOCTYPE html> <html lang="en"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script> <title>나만의 동기부여 홈화면 만들기</title> <style> @import url('https://tse3.mm.bing.net/th?id=OIP.L2kLJ8MhENLZsGMsC1ENEQHaE8&pid=Api&P=0'); * { font-family: 'Poppins', sans-serif; } body { background-image: url("https://tse3.mm.bing.net/th?id=OIP.L2kLJ8MhENLZsGMsC1ENEQHaE8&pid=Api&P=0"); background-position: center; background-repeat:no-repeat; color: white; } .time { font-size: 80px; font-weight: bold; } .greeting { font-size: 50px; } .todo { font-size: 30px; } .author { font-size: 25px; font-style: italic; } </style> <script> </script> </head> <body> <div class="main"> <div class="time">12:25</div> <div class="greeting">Hello, Migdracios!</div> <div class="todo">주 3회 운동하기</div> </div> <div class="quote"> <div class="author">- 명언 저자 - </div> <div class="content">" 여기는 명언 내용이 들어갑니다! " </div> </div> </body> </html>
