(adsbygoogle = window.adsbygoogle || []).push({ google_ad_client: "ca-pub-8242763509535969", enable_page_level_ads: true }); [자바스크립트] 폰트 설정해주기! :: 깜냥깜냥
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>




실행했을때


+ Recent posts