2. CSS

CSS 로 텍스트 가운데 정렬 만들기 (text-align)

도피디 2024. 11. 11. 23:26
반응형
<!DOCTYPE html>
<html lang="kr">
<head>
<title>Home - My first website.</title>
<link href="styles.css" rel="stylesheet" />
<style>
h1 {
color: yellowgreen;
text-decoration: underline;
font-weight: 300;
font-style: italic;
font-size: 50px;
}
address {
text-align: center;
color: tomato;
}
</style>
</head>
<body>
<header>
<h1>The Nick Times</h1>
</header>
<main>
<address>123 Road Altavista</address>
</main>
<footer>&copy; 2024.NN</footer>
</body>
</html>

 

 

 

 

 

 

결과

반응형