본문 바로가기

CSS

CSS 실습

반응형

1. HTML로 웹사이트를 만들고, 고양이 사진을 넣었다. 

<HTML코드>

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="./main.css">
</head>
<body>
    <h1>Hello HTML!</h1>
    <div>Hello World!!</div>
    <img src="./고양이.jpg" alt="고양이">
    <br /> 
    <input type="text" /> 
    <input type="checkbox" />
    <br /> 
    <br /> 

    <span style="width: 100px;">Hello</span>
    <span style="height: 100px;">World</span>
</body> 
</html>

 

<CSS코드>

 
div {
    color:red;
    font-size: 100px;
}

img {
    width: 500px;
    height: 500px;
}

 

반응형

'CSS' 카테고리의 다른 글

css 연습  (0) 2023.03.29
CSS 박스 모델 연습  (0) 2023.03.28
CSS 기본 문법 ②  (0) 2023.03.27
CSS 복습  (0) 2023.03.24
CSS 기본 문법  (0) 2023.03.23