코딩으로 웹디자인! 그 시작을 돕습니다.

[aiovg_video type="youtube" youtube="https://youtu.be/311AdnPDZEw"]

미니코딩 안내서Code Notes

HTML


<main>
    <section class="introduce">
        <img class="champagne" src="champagne.png">
        <div>
	    <h1>Champagne<br>bottles</h1>    
	    <p>Champagne is mostly fermented in two sizes of bottles, 
	    standard bottles (750 millilitres) and magnums (1.5 litres). 
	    In general, magnums are thought to be higher quality, 
	    as there is less oxygen in the bottle, 
	    and the volume-to-surface area ratio favours 
	    the creation of appropriately sized bubbles.</p>
	</div>
    </section>
    <section class="major">
        <dl class="detail">
	    <div class="flex">
		<dt>Capacity</dt>
		<dd>750ml</dd>
	    </div>
            <div class="flex">
		<dt>Region</dt>
		<dd>France</dd>
	    </div>
	</dl>
	<h2 class="price">53.43</h2>
    </section>
</main>





				

CSS


/* Web Fonts */
	Web Fonts 부분은 영상을 참고하여 직접 작성해 보세요!
	웹폰트 적용하는 방법에 익숙해집니다.

/* CSS Resets */
	CSS Resets 부분은 영상을 참고하여 직접 작성해 보세요!
	HTML 요소와 친밀해지는 시간입니다.
	
/* Desgin Areas */
.flex {
	display: flex;
}

section {
	padding: 50px;
}

/* Desgin Areas */
body {
	font-family: 'Kumbh Sans', sans-serif;
	font-size: 20px;
	font-weight: 200;
	background-color: #333;
}

main {
	width: 700px;
	margin: 150px auto 0;
}

.introduce {
	background-color: #ffe5af;
}

.introduce h1 {
	font-family: 'Cinzel Decorative', cursive;
	font-size: 4rem;
	line-height: 1.1;
	margin: 5px 0 30px;
}

.introduce .champagne {
	width: auto;
	height: 680px;
	float: right;
	shape-outside: polygon(56px 10px, 48px 152px, -10px 400px, -10px 770px, 200px 770px);
}

.major {
	background-color: #72cd6a;
	font-weight: 400;
	color: #22401f;
}

.major .detail {
	font-size: 1.6rem;
	line-height: 1.6;
}

.detail dt:after {
	content: ' :';
	margin-right: 10px;
}

.price {
	margin-top: 20px;
	font-size: 4rem;
}

.price:before {
	content: '$';
}





				

주의사항

추가적으로 필요한 주의사항을 공지합니다.

이 콘텐츠에는 웹 접근성에 대한 내용이 포함되어 있지 않습니다.
감안해서 참고해 주시면 감사하겠습니다.

: 같은 기호는 가상 요소로 활용하는 것이 편리합니다.

$처럼 특정 단위를 나타내는 중요한 기호는
HTML에서 직접 작성하는 것을 권장합니다.

참고사항

아래에 명시한 내용을 참고할 수 있습니다.

샴페인 이미지 사이즈
294 x 1166 / 배경이 없는 png
사용된 웹폰트
Kumbh Sans(200, 400) / Google Fonts
Cinzel Decorative / Google Fonts
사용된 텍스트
Champagne / Wikipedia
사용된 브라우저
NAVER Whale
사용된 코드 에디터
Visual Studio Code

커피 한 잔으로 후원하기

콘텐츠를 제작하는데 아주 큰 힘이 됩니다.

한 움큼 받아가기

일부 자세한 설명을 한 움큼 받아 가세요!

[aiovg_video type="youtube" youtube="https://youtu.be/CA7OB0Pgqi8"]