html : 뼈대
css : 뼈대에 속성부여(간격,크기,색깔)
Js : 이벤트부여(클릭,로그인시 특정행동에 특정결과를 부여, 클릭하면 클씨의 색깔이 바뀐다)
<tag>contect</tag>
<a href="https://www.inflearn.com">go to inflearn</a>
<div>
<h2>welcome to inflearn</h2>
</div>
<img src="이미지주소복붙" />
<html>
<head></head>
<body></body>
</html>
주의) head tag안에 입력해라
A) css 파일을 따로 만들고
css 파일과 html 파일을 연결하는 방식
<link href="web.css" rel="stylesheet" />
href="web.css"
rel="stylesheet"
<style>
p {
color: tomato;
}
</style>
주의) head tag안에 작성
A) js파일 만들고
js파일과 html파일을 연결하는 방식
<script src="web.js" type="text/javascript"></script>
src="web.js"
type="text/javascript"
B) html안에 js 직접 입력하는 방식
<script>
console.log("100");
</script>