개발하는 루루언니

반응형 만들어보기 : 기초세팅 본문

컴퓨터 정보/html.css.js 기초

반응형 만들어보기 : 기초세팅

혜닝혜루 2022. 11. 30. 14:06
728x90
반응형

CSS 

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Varela+Round&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,a:link, a:visited{
  text-decoration: none;
  color:inherit
}
li {
  list-style: none;
}

 

728x90