[javascript] html,css 기본문법
# 글자색상바꾸기 <font color="색상">
# 글자크기바꾸기 <font size="크기">
# 글자배경색상바꾸기 <h1 style="background:색상"> --->사실 css(Inline Sytle Sheet)
# 줄바꿈 <br/>
# 배경색상바꾸기 <body bgcolor="색상">
# 단락구분 <p>
# 입력한대로보여주기 <pre></pre>
# 공백한칸
# 문단정렬하기 <div align="left|center|right"></div>
# 테두리지정하기
1. html문법
<table border="1" width="" height="">
tr --> 줄 td --> 칸
2. css문법 --> Embeded Style Sheet
<style type="text/css">
td {
border-style:dotted;
border-width:2px;
border-color:red;
width:50px;
height:50px;
}
</style>
text-align:center;
background:yellow;
td class="s1"
.s1 {background:aquamarine;} // .class명 -->선택자