저는 할미라 눈이 침침한데 파이참 글씨 크기가 굉장히 작더라구요?
ctrl+마우스휠로도 조정이 안되고 ctrl+'+' 눌러도 안되고 우짤래미??
File > Settings > Editor > Font 가서 사이즈 조절하면 됩니다
전 16이 좋더라구요 캬캬
지난 코드에 예를 들면
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>로그인페이지</title>
<style>
.mytitle {
color: red;
}
</style>
</head>
<body>
<h1 class="mytitle">로그인 페이지</h1>
<p>ID: <input type="text" /></p>
<p>PW: <input type="text" /></p>
<button>로그인하기</button>
</body>
</html>
h1태그 부분에 이름을 mytitle로 지정해준다
그리고 head태그 내에서 style태그를 걸고 mytitle 이름을 호출해 style을 지정하는 것
그럼 결과로 이렇게 나온다 ⬇