JAVA_EE/CSS

[21.09.15] exam05(01_css) -

luvforjunk 2021. 9. 15. 18:40
728x90
반응형

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Insert title here</title>

<style type="text/css">

p {

        color: midnightblue;

        font-size: 15px;

}

</style>

</head>

<body>

<h3>정국</h3>

<hr>

<p>오페라를 좋아하고</p>

<p>BTS 좋아하고</p>

<p style="color: darkred;">김치부침개를 좋아하고</p>

<p style="color: cornflowerblue; font-size: 30px;">콩비지찌개를 좋아합니다.</p>

</body>

</html>

 

728x90
반응형