반응형
Meaning
Cascading Style Sheet
(one after the other)
The brouser read from top to bottom.(the order effects the results)
Two way
1) Inline CSS: Use <Style> tag
<head>
<style>
<!--CSS code-->
</style>
</head>
2) External CSS: Create CSS file(styles.css), Connect by using <link> tag
<head>
<link href="styles.css" rel="stylesheet" />
</head>
CSS point html tag
selector { curly bracket
whatever you want
}
<head>
<style>
h1 {
color: yellowgreen; property colon values semi-colon
text-decoration: underline; Do not use space, underline, slash
font-style: italic;
}
</styles>
</head>
<body>
<h1>Welcome to Jane times</h1>
</body>
'HTML CSS' 카테고리의 다른 글
KokoaTalk Clone Coding: CSS margin (0) | 2021.05.02 |
---|---|
KokoaTalk Clone Coding: CSS blocks and lnlines (0) | 2021.05.02 |
KokoaTalk clone coding: HTML more tags (0) | 2021.05.02 |
KokoaTalk clone coding: HTML form tags (0) | 2021.04.30 |
KokoaTalk clone coding: HTML rules, tags (0) | 2021.04.30 |