Skip to content

HTML

샘플 페이지

모듈 구성

Astro
---
import Title from "@shared/ui/title/Title.astro";
import HtmlEmbed from "@shared/module/html-embed/HtmlEmbed.astro";
---
<section>
<Title level={2}>Title</Title>
<HtmlEmbed wide={true}>
<!-- HTML 코드 -->
</HtmlEmbed>
</section>

Props:

  • wide?:boolean: 와이드형
<section>
<h2 class="v-truncate v-title">Title</h2>
<div class="v-html-embed v-html-embed--wide">
<!-- HTML 등록 코드 -->
</div>
</section>

Title

There are over a hundred HTML elements. This page uses all of them. You’re looking at <p></p> right now.

HTML loves text. We can get some huge text with <h1></h1>.

Or smaller with <h2></h2>

And so on…

And so on…

And so on…

And… nope that’s it for headings. These are all in an <hgroup></hgroup> by the way.