1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> <script> var txt = "Hello World!"; document.write("<p>big: " + txt.big() + "</p>"); document.write("<p>small: " + txt.small() + "</p>"); document.write("<p>bold: " + txt.bold() + "</p>"); document.write("<p>기울기: " + txt.italics() + "</p>"); document.write("<p>??: " + txt.fixed() + "</p>"); document.write("<p>: 줄긋기" + txt.strike() + "</p>"); document.write("<p>색: " + txt.fontcolor("green") + "</p>"); document.write("<p>크기: " + txt.fontsize(1) + "</p>"); document.write("<p>아래: " + txt.sub() + "</p>"); document.write("<p>위: " + txt.sup() + "</p>"); </script> </head> <body> </body> </html> |
실행했을때
'code > 웹' 카테고리의 다른 글
[자바스크립트] 만년달력 / 달력 (0) | 2017.04.20 |
---|---|
[자바스크립트] 계산기 (0) | 2017.04.20 |
[자바스크립트]유효성 검사를 한 회원가입 페이지 (0) | 2017.04.20 |
[자바스크립트] inner class 이용해서 미리보기 (0) | 2017.04.20 |
[HTML] 회원가입 페이지 만들기 (0) | 2017.04.20 |