반응형
<!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;
}
</style>
</head>
<body>
<header>
<h1>The Nick Times</h1>
</header>
<main>
<address>123 Road Altavista</address>
</main>
<footer>© 2024.NN</footer>
</body>
</html>
결과
반응형
'2. CSS' 카테고리의 다른 글
CSS의 특징 - Cascading (0) | 2024.11.11 |
---|---|
CSS 로 텍스트 가운데 정렬 만들기 (text-align) (0) | 2024.11.11 |
CSS 속성 작성하기 - html 내부에 작성하기 (color, font-size) (0) | 2024.11.11 |
CSS 작성 방법 (0) | 2024.11.11 |
HTML에 CSS 를 추가하는 방법 (0) | 2024.11.11 |