1. Basic Frame
[1] 기본적인 뼈대
<!DOCTYPE html>
<html>
<head>
<title>Welcome to HTML</title>
</head>
<body>
<p>Welcome to HTML5!</p>
</body>
</html>
2. CSS
[1] CSS 지정하는 법
<!DOCTYPE html>
<html>
<head>
<title>Welcome to HTML</title>
<style>
p{
color : red;
text-align : center;
}
</style>
</head>
<body>
<p>Welcome to HTML5!</p>
</body>
</html>
3. CSS Effects
[1] 다양한 표현 예시
- 굵은 글씨체
- 중앙 정렬
- 토마토 배경색
- 치수를 사용하여 경계선 만들기
- 애니메이션 지정하기
- 글자 쉐도우 적용하기
- :hover 지정하기
5. HyperLink
[1] email로 하이퍼링크 걸기
<!DOCTYPE html>
<html>
<head>
<title>Contact Page</title>
</head>
<body>
<p>
My e-mail address is
<a href = "mailto:deitel@deitel.com">
deitel@deitel.com
</a>
. Click the address and your default email client
will open an email message and address it to me.
</p>
</body>
</html>
