https://cdnjs.com/libraries/font-awesome/5.8.0
들어가서 버전 맞춰준 후
오른쪽 아이콘 중 가운데 있는 link 커피해서
head 태그에 넣어주면!!
https://fontawesome.com/v5.15/icons/apple?style=brands
여기에 있는 아이콘들 사용 가능!!
위는 무채색 !!
내부 스타일 시트, 외부 스타일 시트
내부 스타일 시트는 head 태그 안에!
외부 스타일 시트는 __.css 로 파일 만들어서
<link href="__.css" rel="stylesheet"> 를 head 태그 안에 넣어줘야 사용가능!
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
section{
width: 500px;
padding: 15px;
border: 5px solid gray;
}
</style>
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<section>
<h2>Who am I?</h2>
<p>Front-end Web Tech에 관심이 많습니다.<br>
현재 <span style="color: red;">제주</span>의 한 시골 마을에서 코딩중입니다.</p>
</section>
</div>
</body>
</html>
h2 {color: blue;}
p {font-size: .9em; line-height: 2;}
주요 선택자
전체 선택자 ( * {} ) : 모든 요소에 적용
클래스 선택자( .__ {} ) : 특정 부분에 스타일 적용
댓글