<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
alert("hello world"); -> ๊ฒฝ๊ณ ์ฐฝ ์์ฑ
</script>
</head>
<body>
<input type="button" value="white" onclick="alert('Hello world!')"/> -> ๋ฒํผ ์์ฑ ๋ฐ ํด๋ฆญ ์ด๋ฒคํธ๋ก ๊ฒฝ๊ณ ์ฐฝ ์์ฑ
<input type="text" onfocus="alert('focus')" onblur="alert('blur')"> -> ํ
์คํธ ํ๋ ๋ฐ ํ๋ ํด๋ฆญ์ ๊ฒฝ๊ณ ์ฐฝ ์์ฑ
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script>
alert("hello world");
</script>
</head>
<body>
<input type="text" id = "user_input"/> -> ์ฌ์ฉ์๊ฐ ํ
์คํธ ํ๋์ ์
๋ ฅํ ๊ฐ์ 'user_input' ์ด๋ผ๋ id๋ก ์ ์ฅ
<input type="button" value="white" onclick="alert(document.getElementById('user_input').value)"> -> ๋ฒํผ ํด๋ฆญ ์ด๋ฒคํธ๋ก, ๊ฒฝ๊ณ ์ฐฝ ๋์ + ๊ฒฝ๊ณ ์ฐฝ์ ์ฌ์ฉ์๊ฐ ์
๋ ฅํ ํ
์คํธ๋ฅผ id๋ก ๊ฐ์ ธ์ ํ์ํจ
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style> -> css
li{
color:blue;
}
ul li{
font-size:40px;
}
.em{ -> em์ด๋ผ๋ ํด๋์ค์ css
text-decoration:underline;
}
</style>
</head>
<body>
<ol id ="target"> -> olํ๊ทธ์ id ๋ถ์ฌ
<li>html</li>
<li>css</li>
<li>JavaScript</li>
</ol>
<ul>
<li>์ต์งํ</li>
<li>์ต์ ๋น</li>
<li>ํ์๋</li>
<li>ํ์ด์</li>
</ul>
<input type="button" value="๊ฐ์กฐ"
onclick="document.getElementById('target').className='em'"/> -> ๋ฒํผ ํด๋ฆญ์ target์ด๋ผ๋ id๋ฅผ ๊ฐ์ ธ์ ํด๋น ํ๊ทธ์ emํด๋์ค๋ก ์ง์ ๋๊ฒ๋ ํจ + emํด๋์ค์ ์ง์ ๋จ์ผ๋ก์จ ํด๋น ํ๊ทธ์ emํด๋์ค์ css์ธ ์ธ๋๋ผ์ธ css ์ ์ฉ๋จ
</body>
</html>
(+ navํ๊ทธ์ articleํ๊ทธ ์ฌ์ด ๋ฒํผ์ ์์น์์ผ์ผ ํ๋ค)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="http://localhost/style.css">
</head>
<body id = "target"> -> body ํ๊ทธ์ id ์ค์
<header>
<h1><a href="http://localhost/">JavaScript</a></h1>
</header>
<nav>
<ol>
<li><a href="http://localhost/page_html.html">JavaScript๋?</a></li>
<li><a href="http://localhost/page_vc.html">๋ณ์์ ์์</a></li>
<li><a href="http://localhost/page_op.html">์ฐ์ฐ์</a></li>
</ol>
</nav>
-> ๋ฒํผ์์น๋ฅผ ๊ณ ๋ คํ์ฌ navํ๊ทธ์ articleํ๊ทธ ์ฌ์ด ์์น์ํค๊ธฐ
<div id = "control"> -> ๋ฒํผ์ ๊ทธ๋ฃนํํ๊ธฐ ์ํด div ํ๊ทธ๋ก ๋ฌถ๊ธฐ + id ์ค์
<input type="button" value="white" onclick="document.getElementById('target').className='white'"/>
<input type="button" value="black" onclick="document.getElementById('target').className='black'"/>
</div> -> ๋ฒํผ์ ๋๋ฅด๋ฉด target id๋ฅผ ๊ฐ์ ธ์ cssํ์ผ์ 'className'์ด๋ฆ์ ํด๋์ค ์ ์ฉ
<article>
<h2>๋ณ์์ ์์</h2>
๋ณ์๋
<ul>
<li> ๋ณ์๋ ๋ฐ๋ ์ ์๋ ๊ฐ์ด๊ณ , ์์๋ ๋ฐ๋์ง ์๋ ๊ฐ์
๋๋ค.</li>
<li> ๋ณํ๋ ๊ฐ</li>
</ul>
์์๋
<ul>
<li> ๋ณํ์ง ์๋ ๊ฐ</li>
<li> a=10 ์ผ ๋ ์ค๋ฅธ์ชฝ ๊ฐ์ธ 10์ด ์์๊ฐ ๋๋ค.</li>
</ul>
</article>
</body>
</html>
body.white{ -> bodyํ๊ทธ์ ํน์ ํด๋์ค ์ด๋ฆ white๋ก ์ค์
background-color: white;
color: black; -> ๊ธ
์ ์ ๊ฒ์
}
body.black{ -> bodyํ๊ทธ์ ํน์ ํด๋์ค ์ด๋ฆ black ์ค์
background-color: black;
color: white;
}
header{
border-bottom:1px solid gray;
padding:20px;
}
nav{
border-right: 1px solid gray;
width:200px;
height: 600px;
float: left;
}
nav ol{
list-style: none;
}
article{
float: left;
padding:20px;
}
h2{
font-size: 50px;
}
#control{ -> htmlํ์ผ ๋ด control ์ด๋ฆ์ ์์ด๋๋ฅผ ๊ฐ์ง ํ๊ทธ css
float: right; -> ์ค๋ฅด์ชฝ์ ์์น์ํค๊ธฐ
}