HTML & CSS

2018. 7. 25. 15:11IT관련

반응형

World Wide Web(WWW, W3)

  • 인터넷에 연결된 컴퓨터들을 통해 정보를 공유할 수 있는 정보 공간
  • HTTP 프로토콜, 하이퍼텍스트, HTML 등을 이용하여 그림과 문자를 교환하는 전송방식
  • 최초의 웹사이트

Web Server(HTTP Server)


HyperText Markup Language(HTML)

  • HTML Element
    • <tag>보이는 내용</tag>
    • <tag attribute1="value1" attribute2="value2">보이는 내용</tag>
  • 자세한 사항은 W3School.com을 참조.

Sample HTML Documents

<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>

Cascading Style Sheets(CSS)

문법

The element selector

p {
    color: red;
    text-align: center;
}

The id selector

#para1 {
    color: red;
    text-align: center;
}

The class selector

.center {
    color: red;
    text-align: center;
}

Grouping selector

h1, h2, p {
    color: red;
    text-align: center;
}

Three Ways to Insert CSS

External Style Sheet

<head>
<link rel="stylesheet" type="text/css" href="mystyle.css">
</head>

Internal Style Sheet

<head>
<style>
body {
    background-color: linen;
}
h1 {
    color: maroon;
    margin-left: 40px;
</style>
</head>

Inline Styles

<h1 style="color:blue;margin-left:30px;">This is a heading</h1>


CSS Box Model


div {

    width: 300px;

    border: 25px solid green;

    padding: 25px;

    margin: 25px;

}


HTML Block and Inline Elements


<meta>

<head>

    <meta charset="UTF-8">

    <meta name="description" content="Free Web tutorials">

    <meta name="keywords" content="HTML,CSS,XML,JavaScript">

    <meta name="author" content="John Doe">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

</head>


CSS @media query



반응형

'IT관련' 카테고리의 다른 글

Requests: HTTP for Humans (1)  (0) 2018.11.30
JavaScript & Ajax  (0) 2018.07.27
SW 61 XY, 6C XY 응답의 대응방법  (0) 2018.07.20
Nest Cam IQ indoor 사용기  (15) 2018.04.02
맥북에어 2011에 Windows 10 설치  (9) 2017.10.26