본문 바로가기

inventor

WebView, Style

 화면에 표시되는 문자의 속성 즉 색상, 크기를  설정 합니다.

 

 

 

 

html 

<!DOCTYPE html>
<html>
<body>

<p>STYLE</p>
<p style="color:red;"> red</p>
<p style="color:blue;">blue</p>
<p style="font-size:50px;">SPRING</p>

</body>
</html>

<!DOCTYPE html>
<html>
<body>

<h1 style="background-color:Tomato;">Tomato</h1>
<h1 style="background-color:Orange;">Orange</h1>
<h1 style="background-color:DodgerBlue;">DodgerBlue</h1>
<h1 style="background-color:Gray;">Gray</h1>


</body>
</html>

'inventor' 카테고리의 다른 글

WebView Class  (0) 2022.11.18
WebView, CSS  (0) 2022.11.18
webView, href  (0) 2022.11.18
WebView, HTML  (0) 2022.11.18
배열  (0) 2022.11.18