https://www.w3schools.com/
W3Schools Free Online Web Tutorials
W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.
www.w3schools.com
자바스크립트 콘솔 제어
실행
Enter
실행 미루기
Shft + Enter
태그 선택자
<!DOCTYPE html>
<html>
<head>
<style>
.js{
font-weight: bold;
color:red;
}
</style>
<meta charset="utf-8">
<title></title>
</head>
<body>
<div class="js">JavaScript</div>
<span>JavaScript</span>
</body>
</html>
div 태그
화면 전체를 쓰는 어떠한 기능도 없는 정보제어를 위해 감싸주는 태그
span 태그
줄 바꿈이 되지 않는 어떠한 기능도 없는 태그