CSS_05
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>        strong {            color: blue;        }        p strong {            color: red;        }            style>head>body>        strong>기냥 택스트 요소strong>    p>strong>자손 택스트 요소strong>p>body>html>
CSS_04
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    link rel="stylesheet" href="css/style.css">head>body>            - link : 현재 문서와 외부 리소소(.css) 파일 괴의                 관계를 명시하는 선언.        - rel="stylesheet" : 태그로 연결하는 파일이 외부에                             있는 스타일 시트 파일이라는 뜻을 가짐.   ..
CSS_03
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>    style>        span {            font-size: 20px;    /* 글자 크기 속성 */            font-weight: bold;  /* 글자 굵기 속성 */            color: red;       /* 글자의 색상 속성*/        }            style>head>body>    h3>웹 표준 이후의 예h3>    p>        이..
CSS_02
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>head>body>        h3>웹 표준 이전의 예h3>    p>        이제 font size="5" color="red">웹 표준font>의 역할은        아주 font size="5" color="blue">중요font>합니다.     p>body>html>
CSS_01
·
CSS/기초 내용 정리
2024-10-10 DOCTYPE html>html lang="ko">head>    meta charset="UTF-8">    meta name="viewport" content="width=device-width, initial-scale=1.0">    title>Documenttitle>head>body>            CSS(Casasing Style Sheets)        - HTML이 웹 페이지의 "뼈대"라고 한다면.          CSS는 "살 이라고 표현할 수 있음.        - 즉. HTML이 웹페이지의 정보를 나타낸다면,          CSS는 HTML을 좀 더 보기 좋게 디자인하는           역할이라고 생각하면 됨.    -->    h3>CSS의 특징h3>..