43 lines
1 KiB
HTML
43 lines
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Catppuccin CSS Example Page</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/example/example.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Catppuccin CSS</h1>
|
|
</header>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a href="">Home</a></li>
|
|
<li><a href="">About</a></li>
|
|
<li><a href="">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<article>
|
|
<h2>This is a headline</h2>
|
|
<p>
|
|
This paragraph is nested inside an article. It contains basic tags like <a href="#top">anchors</a>,
|
|
<strong>strong</strong>, <em>emphasis</em>, and <u>underline</u>.
|
|
It provides <del>deleted text</del> as well, which often gets replaced with <ins>inserted</ins> text.
|
|
</p>
|
|
|
|
<h3>Soothing Pastels</h3>
|
|
|
|
<div class="colors">
|
|
<div class="first"></div>
|
|
<div class="second"></div>
|
|
<div class="third"></div>
|
|
</div>
|
|
</article>
|
|
|
|
<!-- Made with html5example.com -->
|
|
</body>
|
|
</html>
|
|
|