영상
이미지 파일
개념
<!DOCTYPE html>
<html lang="ko">
<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>
<style>
h1, p {
font-family: serif; /* 글꼴 */
}
h1 {
border-bottom: 1px solid gray;
color: red;
}
body {
background-color: yellow;
}
</style>
</head>
<body>
<h1>Welcome to Web Coffee!</h1>
<img src="coffee.gif" width="100" height="100">
<p>
하우스 로스팅 원두의 신선한 커피를 맛보세요!
공인 1급 Barista가
최고급 원두만을 직접 엄선하여 사용합니다.
</p>
<h2>메뉴</h2>
<p>
아메리카노,카페라떼,카푸치노,카페모카, ...
</p>
</body>
</html>
HTML
복사