일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- binary search
- MYSQL
- 다익스트라
- Dijkstra
- SQL
- Trie
- 스토어드 프로시저
- 그래프
- two pointer
- DP
- Stored Procedure
- 이진탐색
- Brute Force
- String
- Hash
- Two Points
- union find
Archives
- Today
- Total
codingfarm
HTML과 CSS가 만나는법 본문
아래처럼 크게 2가지 방법이 존재한다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<head>
<!--style tag내에서 선택자로 구며주기-->
<style>
h2{color:blue}
</style>
</head>
<body>
<!--tag내의 옵션으로 꾸며주기-->
<h1 style = "color:red">Hello World</h1>
<h2>Hello World</h2>
</body>
</html>
|
cs |
'web > CSS3' 카테고리의 다른 글
color (0) | 2020.10.02 |
---|---|
font-size (0) | 2020.10.02 |
pseudo class selector (0) | 2020.10.02 |
nth-child()과 nth-of-type() (0) | 2020.10.02 |
개요 (0) | 2020.10.01 |
Comments