JAVA_EE/CSS

[21.09.15] exam04(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">

body{

        background-color: linen;

        color: lightcoral;

        margin-left: 30px;

        margin-right: 30px;

}

h3{

        text-align: center;

        color: darkred;

        margin: 30px;

}

</style>

</head>

<body>

<h3>아이유</h3>

<hr>

<p>어쩜 이렇게 하늘은 파란건지. 눈물이 차올라서 고개 들어. 흐르지 못하게 활짝 웃어.</p>

 

</body>

</html>

 

728x90
반응형