lotte css

Links

Basic Links

Standard Link

This is a standard link within a paragraph of text.

<p>
  This is a <a href="#">standard link</a> within a paragraph of text.
</p>

Link with Title

This is a link with a title attribute that displays a tooltip on hover.

<p>
  This is a <a href="#" title="Link with title attribute">link with a title attribute</a> that displays a tooltip on hover.
</p>

External Link

This is an external link that opens in a new tab.

<p>
  This is an <a href="https://example.com" target="_blank" rel="noopener noreferrer">external link</a> that opens in a new tab.
</p>

Link States

Link States

<ul>
  <li><a href="#" class="link-normal">Normal link</a></li>
  <li><a href="#visited" class="link-visited">Visited link</a></li>
  <li><a href="#" class="link-hover">Hover link</a></li>
  <li><a href="#" class="link-active">Active link</a></li>
  <li><a href="#" class="link-focus">Focus link</a></li>
</ul>

Navigation Links

Navigation Menu

<nav class="example-nav">
  <ul>
    <li><a href="#" class="nav-link">Home</a></li>
    <li><a href="#" class="nav-link">About</a></li>
    <li><a href="#" class="nav-link">Services</a></li>
    <li><a href="#" class="nav-link">Portfolio</a></li>
    <li><a href="#" class="nav-link">Contact</a></li>
  </ul>
</nav>

Anchor Links

Jump Navigation

Target Sections

Section 1

This is the content of section 1.

Section 2

This is the content of section 2.

Section 3

This is the content of section 3.

<div id="section1">
  <h4>Section 1</h4>
  <p>This is the content of section 1.</p>
</div>

<div id="section2">
  <h4>Section 2</h4>
  <p>This is the content of section 2.</p>
</div>

<div id="section3">
  <h4>Section 3</h4>
  <p>This is the content of section 3.</p>
</div>